Skip to content

Commit

Permalink
Update version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paddybyers committed Jul 18, 2019
1 parent a9c78b4 commit e4172e1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [v1.1.3](https://github.com/ably/ably-java/tree/v1.1.3)

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

**Merged pull requests:**

- Push: delete all locally persisted state when deregistering [\#494](https://github.com/ably/ably-java/pull/494) ([paddybyers](https://github.com/paddybyers))
- Async callback fix [\#493](https://github.com/ably/ably-java/pull/493) ([amsurana](https://github.com/amsurana))

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

[Full Changelog](https://github.com/ably/ably-java/compare/v1.0.14...v1.1.1)
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Reference the library by including a compile dependency reference in your gradle
For [Java](https://bintray.com/ably-io/ably/ably-java/_latestVersion):

```
compile 'io.ably:ably-java:1.1.2'
compile 'io.ably:ably-java:1.1.3'
```

For [Android](https://bintray.com/ably-io/ably/ably-android/_latestVersion):

```
compile 'io.ably:ably-android:1.1.2'
compile 'io.ably:ably-android:1.1.3'
```

The library is hosted on the [Jcenter repository](https://bintray.com/ably-io/ably), so you need to ensure that the repo is referenced also; IDEs will typically include this by default:
Expand Down Expand Up @@ -567,9 +567,9 @@ This library uses [semantic versioning](http://semver.org/). For each release, t

### Release notes

* Create a branch for the release, named like `release-1.1.2`
* Create a branch for the release, named like `release-1.1.3`
* Replace all references of the current version number with the new version number (check this file [README.md](./README.md) and [common.gradle](./common.gradle)) 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-java --header-label="# Changelog" --release-branch=release-1.1.2 --future-release=v1.0.8`
* Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to update the [CHANGELOG](./CHANGELOG.md): `github_changelog_generator -u ably -p ably-java --header-label="# Changelog" --release-branch=release-1.1.3 --future-release=v1.0.8`
* Commit [CHANGELOG](./CHANGELOG.md)
* Add a tag and push to origin such as `git tag v1.1.0; git push origin v1.1.0`
* Make a PR against `develop`
Expand All @@ -583,12 +583,12 @@ This library uses [semantic versioning](http://semver.org/). For each release, t

### Publishing to JCenter (Maven)

* Go to the home page for the package; eg https://bintray.com/ably-io/ably/ably-java. Select [New version](https://bintray.com/ably-io/ably/ably-java/new/version), enter the new version such as "1.1.2" in name and save
* Go to the home page for the package; eg https://bintray.com/ably-io/ably/ably-java. Select [New version](https://bintray.com/ably-io/ably/ably-java/new/version), enter the new version such as "1.1.3" in name and save
* Run `./gradlew java:assembleRelease` locally to generate the files
* Open local relative folder such as `./java/build/release/1.1.2/io/ably/ably-java/1.1.2`
* Then go to the new version in JFrog Bintray; eg https://bintray.com/ably-io/ably/ably-java/1.1.2, then click on the link to upload via the UI in the "Upload files" section
* Type in `io/ably/ably-java/1.1.2` into "Target Repository Path" ensuring the correct version is included. The drag in the files in `java/build/release/1.1.2/`. Upload all the `.jar` files and the `.pom` file.
* You will see a notice "You have 4 unpublished item(s) for this version", make sure you click "Publish". Wait a few minutes and check that your version has all the necessary files at https://bintray.com/ably-io/ably/ably-java/1.1.2?sort=&order=#files/io/ably/ably-java/1.1.2 for example.
* Open local relative folder such as `./java/build/release/1.1.3/io/ably/ably-java/1.1.3`
* Then go to the new version in JFrog Bintray; eg https://bintray.com/ably-io/ably/ably-java/1.1.3, then click on the link to upload via the UI in the "Upload files" section
* Type in `io/ably/ably-java/1.1.3` into "Target Repository Path" ensuring the correct version is included. The drag in the files in `java/build/release/1.1.3/`. Upload all the `.jar` files and the `.pom` file.
* You will see a notice "You have 4 unpublished item(s) for this version", make sure you click "Publish". Wait a few minutes and check that your version has all the necessary files at https://bintray.com/ably-io/ably/ably-java/1.1.3?sort=&order=#files/io/ably/ably-java/1.1.3 for example.
* Update the README text in Bintray.

### Create release on Github
Expand All @@ -597,7 +597,7 @@ This library uses [semantic versioning](http://semver.org/). For each release, t

Similarly for the Android release at https://bintray.com/ably-io/ably/ably-android.
Run `gradle android:assembleRelease` locally to generate the files, and drag in the files in
`./android/build/release/1.1.2/io/ably/ably-android/1.1.2`. In this case upload the `.jar` files, the `.pom` file and the `.aar` file.
`./android/build/release/1.1.3/io/ably/ably-android/1.1.3`. In this case upload the `.jar` files, the `.pom` file and the `.aar` file.

## Support, feedback and troubleshooting

Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repositories {
}

group = 'io.ably'
version = '1.1.2'
version = '1.1.3'
description = """Ably java client library"""

tasks.withType(Javadoc) {
Expand Down

0 comments on commit e4172e1

Please sign in to comment.