Skip to content

Commit da7af45

Browse files
committed
Bump version to 0.9.0beta1
1 parent d2b2c90 commit da7af45

File tree

3 files changed

+25
-14
lines changed

3 files changed

+25
-14
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Change Log
22

3-
## [v0.8.10](https://github.com/ably/ably-java/tree/HEAD)
3+
## [v0.9.0beta1](https://github.com/ably/ably-java/tree/v0.9.0beta1)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v0.8.10...v0.9.0beta1)
6+
7+
**Implemented enhancements:**
8+
9+
This is the first release of the 0.9 client library specification, which contains many extensions
10+
and fixes over the 0.8 specification.
11+
12+
This is an early access beta release. Subsequent releases will contain a more detailed breakdown of changes.
13+
14+
## [v0.8.10](https://github.com/ably/ably-java/tree/v0.8.10)
415

516
[Full Changelog](https://github.com/ably/ably-java/compare/v0.8.9...v0.8.10)
617

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Reference the library by including a compile dependency reference in your gradle
1717
For [Java](https://bintray.com/ably-io/ably/ably-java/_latestVersion):
1818

1919
```
20-
compile 'io.ably:ably-java:0.8.10'
20+
compile 'io.ably:ably-java:0.9.0'
2121
```
2222

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

2525
```
26-
compile 'io.ably:ably-android:0.8.10'
26+
compile 'io.ably:ably-android:0.9.0'
2727
```
2828

2929
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.
374374
This library uses [semantic versioning](http://semver.org/). For each release, the following needs to be done:
375375

376376
* 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`
379379
* Run `gradle java:assemble` to build the JRE-specific JARs for this release
380380
* 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`.
383383

384384
### Publishing to JCenter (Maven)
385385

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
387387
* 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.
392392
* Update the README text in Bintray.
393393

394394
Similarly for the Android release at https://bintray.com/ably-io/ably/ably-android.
395395
Run `gradle android:assembleRelease` locally to generate the files, and drag in the files in
396-
`android/build/release/0.8.10/`.
396+
`android/build/release/0.9.0/`.
397397

398398
## Support, feedback and troubleshooting
399399

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ allprojects {
2121
}
2222

2323
subprojects {
24-
version = '0.9.pre'
24+
version = '0.9.0beta1'
2525
description = """Ably java client library"""
2626
}

0 commit comments

Comments
 (0)