ably 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ef659416f63ce4d28201ec7fdcfdabc9d844bf5
4
- data.tar.gz: dab7fd81e1e304e76e375a7ddd5cf5c8fb551746
3
+ metadata.gz: 35c9faf01a4c322800ddac5c48bfad4579f7d7bf
4
+ data.tar.gz: 12cd62339ee45d68f0bf70db9322b31cb66f30d5
5
5
  SHA512:
6
- metadata.gz: 1a79248640d75e91cf1c6ac02f396643926df8f32722747103ed45e979e7afa68485d3a47ef7f02d36a09e50fd409d4f073ab92080278156d63a681f81c21082
7
- data.tar.gz: 287cb8f210c1e21a26ec14164ef2d88b072333d431a6ef3f9b9c354661b5185e55deb85fd8b4df97ca7b175264551de9f6b2a02c8f5c58712ea4da6cdf0a5528
6
+ metadata.gz: 14e90c00a29dee9053e239dc957cdcfcd95e80f359a9fdbd8180f602d4ec05c61bffd2884180d3ab1d2c4a66ac249616b95318a81df26116908865b46aa93a60
7
+ data.tar.gz: 4b127fbf6086141d08cc50dc00a1c3cbc32a8b282ecc5bef5a8116c7d481c78c9b05eca4cdc25e50854190ba833c770044bf6810aa492240fa060be7e1bc853f
data/README.md CHANGED
@@ -302,6 +302,15 @@ To see what has changed in recent versions of Bundler, see the [CHANGELOG](CHANG
302
302
  4. Push to the branch (`git push origin my-new-feature`)
303
303
  5. Create a new Pull Request
304
304
 
305
+ ## Release notes
306
+
307
+ This library uses [semantic versioning](http://semver.org/). For each release, the following needs to be done:
308
+
309
+ * Update the version number in [version.rb](./lib/ably/version.rb) and commit the change.
310
+ * Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG](./CHANGELOG.md). Once the `CHANGELOG` update has completed, manually change the `Unreleased` heading and link with the current version number such as `v1.0.0`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`. Commit this change.
311
+ * Add a tag and push to origin such as `git tag v1.0.0 && git push origin v1.0.0`
312
+ * Run `rake release` to publish the gem to [Rubygems](http://www.rubydoc.info/gems/ably)
313
+
305
314
  ## License
306
315
 
307
316
  Copyright (c) 2016 Ably Real-time Ltd, Licensed under the Apache License, Version 2.0. Refer to [LICENSE](LICENSE) for the license terms.
@@ -424,7 +424,8 @@ module Ably
424
424
  )
425
425
 
426
426
  # Use native websocket heartbeats if possible
427
- url_params['heartbeats'] = 'false' unless defaults.fetch(:websocket_heartbeats_disabled)
427
+ # TODO: Fix once https://github.com/ably/ably-ruby/issues/116 is resolved
428
+ url_params['heartbeats'] = 'true' # unless defaults.fetch(:websocket_heartbeats_disabled)
428
429
 
429
430
  url_params['clientId'] = client.auth.client_id if client.auth.has_client_id?
430
431
 
@@ -1,5 +1,5 @@
1
1
  module Ably
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  PROTOCOL_VERSION = '1.0'
4
4
 
5
5
  # Allow a variant to be configured for all instances of this client library
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ably
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis Marshall
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-03-07 00:00:00.000000000 Z
12
+ date: 2017-05-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine
@@ -458,7 +458,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
458
458
  version: '0'
459
459
  requirements: []
460
460
  rubyforge_project:
461
- rubygems_version: 2.6.8
461
+ rubygems_version: 2.4.8
462
462
  signing_key:
463
463
  specification_version: 4
464
464
  summary: A Ruby client library for ably.io realtime messaging implemented using EventMachine