Skip to content

Commit

Permalink
Merge pull request #1000 from ably/release/1.2.37
Browse files Browse the repository at this point in the history
Release/1.2.37
  • Loading branch information
ttypic committed Apr 10, 2024
2 parents 35e5186 + 2776b60 commit b2e6b22
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Change Log

## [1.2.37](https://github.com/ably/ably-java/tree/v1.2.37)

[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.36...v1.2.37)

**Fixed bugs:**

- Fix HttpRequest & HttpRetry timeouts [\#310](https://github.com/ably/ably-java/issues/310)

## [1.2.36](https://github.com/ably/ably-java/tree/v1.2.36)

[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.35...v1.2.36)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -191,7 +191,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
- 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.
- Add an `implementation` dependency on the `.aar`:
```groovy
implementation files('libs/ably-android-1.2.36.aar')
implementation files('libs/ably-android-1.2.37.aar')
```
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
- Build/run your application.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -20,13 +20,13 @@ Include the library by adding an `implementation` reference to `dependencies` bl
For [Java](https://mvnrepository.com/artifact/io.ably/ably-java/latest):

```groovy
implementation 'io.ably:ably-java:1.2.36'
implementation 'io.ably:ably-java:1.2.37'
```

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

```groovy
implementation 'io.ably:ably-android:1.2.36'
implementation 'io.ably:ably-android:1.2.37'
```

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:
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Expand Up @@ -31,7 +31,7 @@ android {
minSdkVersion 19
targetSdkVersion 30
// This MUST be incremented by 1 on each ably-java release
versionCode 11
versionCode 12
versionName version
setProperty('archivesBaseName', "ably-android-$versionName")
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Expand Up @@ -3,7 +3,7 @@ repositories {
}

group = 'io.ably'
version = '1.2.36'
version = '1.2.37'
description = 'Ably java client library'

tasks.withType(Javadoc) {
Expand Down
Expand Up @@ -88,7 +88,7 @@ public void realtime_websocket_param_test() {
* Defaults.ABLY_AGENT_PARAM, as ultimately the request param has been derived from those values.
*/
assertEquals("Verify correct lib version", requestParameters.get("agent"),
Collections.singletonList("ably-java/1.2.36 jre/" + System.getProperty("java.version")));
Collections.singletonList("ably-java/1.2.37 jre/" + System.getProperty("java.version")));

/* Spec RTN2a */
assertEquals("Verify correct format", requestParameters.get("format"),
Expand Down

0 comments on commit b2e6b22

Please sign in to comment.