You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ Reference the library by including a compile dependency reference in your gradle
17
17
For [Java](https://bintray.com/ably-io/ably/ably-java/_latestVersion):
18
18
19
19
```
20
-
compile 'io.ably:ably-java:0.8.10'
20
+
compile 'io.ably:ably-java:0.9.0'
21
21
```
22
22
23
23
For [Android](https://bintray.com/ably-io/ably/ably-android/_latestVersion):
24
24
25
25
```
26
-
compile 'io.ably:ably-android:0.8.10'
26
+
compile 'io.ably:ably-android:0.9.0'
27
27
```
28
28
29
29
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:
@@ -374,26 +374,26 @@ either a real device or the Android emulator.
374
374
This library uses [semantic versioning](http://semver.org/). For each release, the following needs to be done:
375
375
376
376
* Replace all references of the current version number with the new version number (check this file [README.md](./README.md) and [build.gradle](./build.gradle)) and commit the changes
377
-
* Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG](./CHANGELOG.md). Once the CHANGELOG has completed, manually change the `Unreleased` heading and link with the current version number such as `v0.8.10`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`. Commit this change.
378
-
* Add a tag and push to origin such as `git tag v0.8.10 && git push origin v0.8.10`
377
+
* Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG](./CHANGELOG.md). Once the CHANGELOG has completed, manually change the `Unreleased` heading and link with the current version number such as `v0.9.0`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`. Commit this change.
378
+
* Add a tag and push to origin such as `git tag v0.9.0 && git push origin v0.9.0`
379
379
* Run `gradle java:assemble` to build the JRE-specific JARs for this release
380
380
* Run `gradle android:assemble` to build the Android AAR for this release
381
-
* Visit [https://github.com/ably/ably-java/tags](https://github.com/ably/ably-java/tags) and `Add release notes` for the release, then attach the generated JARs (`ably-java-0.8.10.jar` and `ably-java-0.8.10-full.jar`) in the folder `java/build/libs`,
382
-
and the generated AAR (`ably-android-0.8.10-release.aar` in the folder `android/build/outputs/aar`.
381
+
* Visit [https://github.com/ably/ably-java/tags](https://github.com/ably/ably-java/tags) and `Add release notes` for the release, then attach the generated JARs (`ably-java-0.9.0.jar` and `ably-java-0.9.0-full.jar`) in the folder `java/build/libs`,
382
+
and the generated AAR (`ably-android-0.9.0-release.aar` in the folder `android/build/outputs/aar`.
383
383
384
384
### Publishing to JCenter (Maven)
385
385
386
-
* 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 "0.8.10" in name and save
386
+
* 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 "0.9.0" in name and save
387
387
* Run `./gradlew java:assembleRelease` locally to generate the files
388
-
* Open local relative folder such as `/lib/build/release/0.8.10/`
389
-
* Then go to the new version in JFrog Bintray; eg https://bintray.com/ably-io/ably/ably-java/0.8.10, then click on the link to upload via the UI in the "Upload files" section
390
-
* Type in `io/ably/ably-java/0.8.10` into "Target Repository Path" ensuring the correct version is included. The drag in the files in `java/build/release/0.8.10/`
391
-
* You will see a notice "You have 8 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/0.8.10?sort=&order=#files/io/ably/ably-java/0.8.10 for example.
388
+
* Open local relative folder such as `/lib/build/release/0.9.0/`
389
+
* Then go to the new version in JFrog Bintray; eg https://bintray.com/ably-io/ably/ably-java/0.9.0, then click on the link to upload via the UI in the "Upload files" section
390
+
* Type in `io/ably/ably-java/0.9.0` into "Target Repository Path" ensuring the correct version is included. The drag in the files in `java/build/release/0.9.0/`
391
+
* You will see a notice "You have 8 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/0.9.0?sort=&order=#files/io/ably/ably-java/0.9.0 for example.
392
392
* Update the README text in Bintray.
393
393
394
394
Similarly for the Android release at https://bintray.com/ably-io/ably/ably-android.
395
395
Run `gradle android:assembleRelease` locally to generate the files, and drag in the files in
0 commit comments