Skip to content

Commit e74831a

Browse files
committed
chore: bump version number
1 parent f868cbc commit e74831a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
235235
- 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.
236236
- Add an `implementation` dependency on the `.aar`:
237237
```groovy
238-
implementation files('libs/ably-android-1.6.0.aar')
238+
implementation files('libs/ably-android-1.6.1.aar')
239239
```
240240
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
241241
- Build/run your application.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ The Java SDK is available as a [Maven dependency](https://mvnrepository.com/arti
5151
<dependency>
5252
<groupId>io.ably</groupId>
5353
<artifactId>ably-java</artifactId>
54-
<version>1.6.0</version>
54+
<version>1.6.1</version>
5555
</dependency>
5656
```
5757

5858
### Install for Gradle:
5959

6060
```gradle
61-
implementation 'io.ably:ably-java:1.6.0'
61+
implementation 'io.ably:ably-java:1.6.1'
6262
implementation 'org.slf4j:slf4j-simple:2.0.7'
6363
```
6464

@@ -113,7 +113,7 @@ Add the following dependency to your `build.gradle` file:
113113

114114
```groovy
115115
dependencies {
116-
runtimeOnly("io.ably:liveobjects:1.6.0")
116+
runtimeOnly("io.ably:liveobjects:1.6.1")
117117
}
118118
```
119119

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.6.0
2+
VERSION_NAME=1.6.1
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.6.0 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.6.1 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)