Skip to content

Commit 1ac4e5d

Browse files
authored
Merge pull request #185 from ably/release/1.1.0
Release v1.1.0
2 parents 3643660 + 377b596 commit 1ac4e5d

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

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

3+
## [1.1.0](https://github.com/ably/ably-chat-kotlin/tree/v1.1.0)
4+
5+
[Full Changelog](https://github.com/ably/ably-chat-kotlin/compare/v1.0.0...v1.1.0)
6+
7+
### Bug Fixes
8+
9+
- **Connection Status**: Added missing `closing` and `closed` states to the `ConnectionStatus` enum. Previously these states were incorrectly mapped to `failed`. [#184](https://github.com/ably/ably-chat-kotlin/pull/184)
10+
11+
**Note:** If you are using an exhaustive when or switch statement over this enum, you’ll need to either handle
12+
these new cases explicitly or add a default/else branch.
13+
314
## [1.0.0](https://github.com/ably/ably-chat-kotlin/tree/v1.0.0)
415

516
[Full Changelog](https://github.com/ably/ably-chat-kotlin/compare/v0.10.0...v1.0.0)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ The Ably Chat SDK is available on the Maven Central Repository. To include the d
4545
For Groovy:
4646

4747
```groovy
48-
implementation 'com.ably.chat:chat:1.0.0'
48+
implementation 'com.ably.chat:chat:1.1.0'
4949
```
5050

5151
For Kotlin Script (`build.gradle.kts`):
5252

5353
```kotlin
54-
implementation("com.ably.chat:chat:1.0.0")
54+
implementation("com.ably.chat:chat:1.1.0")
5555
```
5656

5757
## Releases

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android.useAndroidX=true
1818

1919
# Maven Publish properties:
2020
GROUP=com.ably.chat
21-
VERSION_NAME=1.0.0
21+
VERSION_NAME=1.1.0
2222

2323
POM_INCEPTION_YEAR=2024
2424
POM_URL=https://github.com/ably/ably-chat-kotlin

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
33

44
[versions]
5-
ably = "1.4.1"
5+
ably = "1.4.2"
66
junit = "4.13.2"
77
agp = "8.5.2"
88
detekt = "1.23.6"

0 commit comments

Comments
 (0)