Skip to content

Commit 2ac824d

Browse files
authored
Merge pull request #1022 from ably/release/1.2.41
Release/1.2.41
2 parents dc8ef2f + a826868 commit 2ac824d

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

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

3+
## [1.2.41](https://github.com/ably/ably-java/tree/v1.2.41)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.40...v1.2.41)
6+
7+
**Closed issues:**
8+
9+
- For REST clients, all requests should include an `X-Ably-ClientId` header when basic auth is to be used \(RSA7e2\) [\#1015](https://github.com/ably/ably-java/issues/1015)
10+
11+
**Merged pull requests:**
12+
13+
- chore\(Auth\): get rid of unnecessary padding removal for Auth tokens [\#1021](https://github.com/ably/ably-java/pull/1021) ([ttypic](https://github.com/ttypic))
14+
- feat: add Google SDK console verification [\#1020](https://github.com/ably/ably-java/pull/1020) ([ttypic](https://github.com/ttypic))
15+
- feat: include `X-Ably-ClientId` for each request \(RSA7e2\) [\#1019](https://github.com/ably/ably-java/pull/1019) ([ttypic](https://github.com/ttypic))
16+
17+
318
## [1.2.40](https://github.com/ably/ably-java/tree/v1.2.40)
419

520
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.39...v1.2.40)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
191191
- 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.
192192
- Add an `implementation` dependency on the `.aar`:
193193
```groovy
194-
implementation files('libs/ably-android-1.2.40.aar')
194+
implementation files('libs/ably-android-1.2.41.aar')
195195
```
196196
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
197197
- Build/run your application.

README.md

Lines changed: 2 additions & 2 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.40'
23+
implementation 'io.ably:ably-java:1.2.41'
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.40'
29+
implementation 'io.ably:ably-android:1.2.41'
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:

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
minSdkVersion 19
3232
targetSdkVersion 30
3333
// This MUST be incremented by 1 on each ably-java release
34-
versionCode 15
34+
versionCode 16
3535
versionName version
3636
setProperty('archivesBaseName', "ably-android-$versionName")
3737
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repositories {
33
}
44

55
group = 'io.ably'
6-
version = '1.2.40'
6+
version = '1.2.41'
77
description = 'Ably java client library'
88

99
tasks.withType(Javadoc) {

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.40 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.41 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)