Skip to content

Commit 1ba7723

Browse files
authored
Merge pull request #1047 from ably/release/1.2.45
Release/1.2.45
2 parents 17624ce + 2997bfa commit 1ba7723

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## [1.2.45](https://github.com/ably/ably-java/tree/v1.2.45)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.44...v1.2.45)
6+
7+
**Closed issues:**
8+
9+
- [RTL5] Incomplete spec implementation for channel DETACH/ATTACH [\#1045](https://github.com/ably/ably-java/issues/1045)
10+
- [RTL7h] Throw exception for optional callback [\#1040](https://github.com/ably/ably-java/issues/1040)
11+
12+
**Merged pull requests:**
13+
14+
- [ECO-5117] Fix channel ATTACH/DETACH state checks [\#1046](https://github.com/ably/ably-java/pull/1046) ([sacOO7](https://github.com/sacOO7))
15+
316
## [1.2.44](https://github.com/ably/ably-java/tree/v1.2.44)
417

518
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.43...v1.2.44)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
219219
- Open the directory printed from the output of that command. Inside that folder, get the `ably-android-x.y.z.aar`, and place it your Android project's `libs/` directory. Create this directory if it doesn't exist.
220220
- Add an `implementation` dependency on the `.aar`:
221221
```groovy
222-
implementation files('libs/ably-android-1.2.44.aar')
222+
implementation files('libs/ably-android-1.2.45.aar')
223223
```
224224
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
225225
- Build/run your application.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Include the library by adding an `implementation` reference to `dependencies` bl
2020
For [Java](https://mvnrepository.com/artifact/io.ably/ably-java/latest):
2121

2222
```groovy
23-
implementation 'io.ably:ably-java:1.2.44'
23+
implementation 'io.ably:ably-java:1.2.45'
2424
```
2525

2626
For [Android](https://mvnrepository.com/artifact/io.ably/ably-android/latest):
2727

2828
```groovy
29-
implementation 'io.ably:ably-android:1.2.44'
29+
implementation 'io.ably:ably-android:1.2.45'
3030
```
3131

3232
The library is hosted on [Maven Central](https://mvnrepository.com/repos/central), so you need to ensure that the repository is referenced also; IDEs will typically include this by default:
@@ -512,7 +512,7 @@ Add the following dependency to your `build.gradle` file:
512512

513513
```groovy
514514
dependencies {
515-
runtimeOnly("io.ably:network-client-okhttp:1.2.44")
515+
runtimeOnly("io.ably:network-client-okhttp:1.2.45")
516516
}
517517
```
518518

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=io.ably
2-
VERSION_NAME=1.2.44
2+
VERSION_NAME=1.2.45
33

44
POM_INCEPTION_YEAR=2015
55
POM_URL=https://github.com/ably/ably-java

lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void realtime_websocket_param_test() {
8888
* Defaults.ABLY_AGENT_PARAM, as ultimately the request param has been derived from those values.
8989
*/
9090
assertEquals("Verify correct lib version", requestParameters.get("agent"),
91-
Collections.singletonList("ably-java/1.2.44 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.45 jre/" + System.getProperty("java.version")));
9292

9393
/* Spec RTN2a */
9494
assertEquals("Verify correct format", requestParameters.get("format"),

0 commit comments

Comments
 (0)