Skip to content

Commit

Permalink
Merge pull request #143 from ably/release-1.1.3
Browse files Browse the repository at this point in the history
Release 1.1.3
  • Loading branch information
tcard authored Apr 2, 2020
2 parents f70c73d + 7bf57d9 commit 9b053c4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

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

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

**Fixed bugs:**

- Drop dependency on subpackage [\#134](https://github.com/ably/ably-go/issues/134)

**Closed issues:**

- Ambiguous import - found go-codec in multiple modules [\#135](https://github.com/ably/ably-go/issues/135)
- Remove develop branch [\#128](https://github.com/ably/ably-go/issues/128)

**Merged pull requests:**

- Fix flaky tests [\#139](https://github.com/ably/ably-go/pull/139) ([tcard](https://github.com/tcard))
- bug: TestRestClient Stats failure due to race cond with sandbox [\#138](https://github.com/ably/ably-go/pull/138) ([audiolion](https://github.com/audiolion))
- bug: unpinned range scope variables in tests [\#137](https://github.com/ably/ably-go/pull/137) ([audiolion](https://github.com/audiolion))
- Update github.com/ugorji/go/codec to v1.1.7 [\#136](https://github.com/ably/ably-go/pull/136) ([lmars](https://github.com/lmars))

## [v1.1.2](https://github.com/ably/ably-go/tree/v1.1.2)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.1.1...v1.1.2)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,13 @@ 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.3`
* Create a branch for the release, named like `release-1.1.4`
* Replace all references of the current version number with the new version number and commit the changes
* Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to update the [CHANGELOG](./CHANGELOG.md): `github_changelog_generator -u ably -p ably-go --header-label="# Changelog" --release-branch=release-1.1.3 --future-release=v1.1.3`
* Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to update the [CHANGELOG](./CHANGELOG.md): `github_changelog_generator -u ably -p ably-go --header-label="# Changelog" --release-branch=release-1.1.4 --future-release=v1.1.4`
* 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.3; git push origin v1.1.3`
* Add a tag to the new `master` head commit and push to origin such as `git tag v1.1.4; git push origin v1.1.4`

## 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 @@ -35,7 +35,7 @@ const (
AblyLibHeader = "X-Ably-Lib"
AblyErrorCodeHeader = "X-Ably-Errorcode"
AblyErrormessageHeader = "X-Ably-Errormessage"
LibraryVersion = "1.1.2"
LibraryVersion = "1.1.3"
LibraryName = "ably-go"
LibraryString = LibraryName + "-" + LibraryVersion
AblyVersion = "1.0"
Expand Down

0 comments on commit 9b053c4

Please sign in to comment.