Skip to content

Commit

Permalink
Merge pull request #163 from ably/release/1.1.5
Browse files Browse the repository at this point in the history
Release/1.1.5
  • Loading branch information
Quintin committed May 27, 2020
2 parents 864675a + 8218259 commit 3448441
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v1.1.5](https://github.com/ably/ably-go/tree/v1.1.5) (2020-05-27)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.1.4...v1.1.5)

**Merged pull requests:**

- Add logs to help in troubleshooting RestClient http api calls [\#162](https://github.com/ably/ably-go/pull/162) ([gernest](https://github.com/gernest))
- Remove unused fields definition on RealtimeClient [\#161](https://github.com/ably/ably-go/pull/161) ([gernest](https://github.com/gernest))
- add implementation for RTN15b-c spec [\#159](https://github.com/ably/ably-go/pull/159) ([gernest](https://github.com/gernest))

## [v1.1.4](https://github.com/ably/ably-go/tree/v1.1.4) (2020-04-24)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.1.3...v1.1.4)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ As the library is actively developed couple of features are not there yet:

This library uses [semantic versioning](http://semver.org/). For each release, the following needs to be done:

* Create a branch for the release, named like `release/1.1.5`
* Create a branch for the release, named like `release/1.1.6`
* Replace all references of the current version number with the new version number and commit the changes
* Run [`github_changelog_generator`](https://github.com/github-changelog-generator/github-changelog-generator) to automate the update of the [CHANGELOG](./CHANGELOG.md). This may require some manual intervention, both in terms of how the command is run and how the change log file is modified. Your mileage may vary:
* The command you will need to run will look something like this: `github_changelog_generator -u ably -p ably-go --since-tag v1.1.4 --output delta.md`
Expand All @@ -279,7 +279,7 @@ This library uses [semantic versioning](http://semver.org/). For each release, t
* Commit [CHANGELOG](./CHANGELOG.md)
* Make a PR against `master`
* Once the PR is approved, merge it into `master`
* Add a tag to the new `master` head commit and push to origin such as `git tag v1.1.5 && git push origin v1.1.5`
* Add a tag to the new `master` head commit and push to origin such as `git tag v1.1.6 && git push origin v1.1.6`

## Support and feedback

Expand Down
2 changes: 1 addition & 1 deletion ably/rest_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (
AblyLibHeader = "X-Ably-Lib"
AblyErrorCodeHeader = "X-Ably-Errorcode"
AblyErrormessageHeader = "X-Ably-Errormessage"
LibraryVersion = "1.1.4"
LibraryVersion = "1.1.5"
LibraryName = "ably-go"
LibraryString = LibraryName + "-" + LibraryVersion
AblyVersion = "1.0"
Expand Down

0 comments on commit 3448441

Please sign in to comment.