Skip to content

Commit fd12be9

Browse files
authored
Merge pull request #1062 from ably/release/1.2.49
Release/1.2.49
2 parents 19d3ef0 + 1b01c7d commit fd12be9

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.49](https://github.com/ably/ably-java/tree/v1.2.49)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.48...v1.2.49)
6+
7+
**Closed issues:**
8+
9+
- Support message edits and deletes [\#1058](https://github.com/ably/ably-java/issues/1058)
10+
11+
**Merged pull requests:**
12+
13+
- chore: upgrade github actions versions [\#1061](https://github.com/ably/ably-java/pull/1061) ([ttypic](https://github.com/ttypic))
14+
- [ECO-5193] Support message edits and deletes [\#1059](https://github.com/ably/ably-java/pull/1059) ([sacOO7](https://github.com/sacOO7))
15+
316
## [1.2.48](https://github.com/ably/ably-java/tree/v1.2.48)
417

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

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.48.aar')
222+
implementation files('libs/ably-android-1.2.49.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.48'
23+
implementation 'io.ably:ably-java:1.2.49'
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.48'
29+
implementation 'io.ably:ably-android:1.2.49'
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.48")
515+
runtimeOnly("io.ably:network-client-okhttp:1.2.49")
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.48
2+
VERSION_NAME=1.2.49
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.48 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.49 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)