Skip to content

Commit aedfd9b

Browse files
authored
Merge pull request #1081 from ably/release/1.2.52
Release/1.2.52
2 parents d976706 + a04eca8 commit aedfd9b

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

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

3+
## [1.2.52](https://github.com/ably/ably-java/tree/v1.2.52)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.51...v1.2.52)
6+
7+
**Closed issues:**
8+
9+
- `Java-WebSocket` holds lock while invoking listeners, it may cause deadlock [\#1079](https://github.com/ably/ably-java/issues/1079)
10+
311
## [1.2.51](https://github.com/ably/ably-java/tree/v1.2.51)
412

513
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.50...v1.2.51)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
215215
- 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.
216216
- Add an `implementation` dependency on the `.aar`:
217217
```groovy
218-
implementation files('libs/ably-android-1.2.51.aar')
218+
implementation files('libs/ably-android-1.2.52.aar')
219219
```
220220
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
221221
- 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.51'
23+
implementation 'io.ably:ably-java:1.2.52'
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.51'
29+
implementation 'io.ably:ably-android:1.2.52'
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.51")
515+
runtimeOnly("io.ably:network-client-okhttp:1.2.52")
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.51
2+
VERSION_NAME=1.2.52
33
POM_INCEPTION_YEAR=2015
44
POM_URL=https://github.com/ably/ably-java
55
POM_SCM_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.51 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.52 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)