Skip to content

Commit eaf1b29

Browse files
authored
Merge pull request #181 from ably/release/1.0.0
Release v1.0.0
2 parents f152d1f + 8f2059f commit eaf1b29

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CHANGELOG.md

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

3+
## [1.0.0](https://github.com/ably/ably-chat-kotlin/tree/v1.0.0)
4+
5+
[Full Changelog](https://github.com/ably/ably-chat-kotlin/compare/v0.10.0...v1.0.0)
6+
7+
## What's Changed
8+
9+
We are excited to announce that the Ably Chat SDK API is now stable.
10+
11+
The Chat SDK includes comprehensive support for:
12+
13+
- Chat rooms for 1:1, 1:many, many:1 and many:many participation
14+
- Messages with full CRUD operations (create, read, update, delete)
15+
- Presence to track online status of chat participants
16+
- Occupancy for monitoring total connections and presence members
17+
- Typing indicators for real-time typing awareness
18+
- Room reactions for real-time room reactions
19+
- Message reactions for reactions to specific messages
20+
- Jetpack Compose extensions for seamless Android UI integration
21+
22+
We are committed to maintaining API stability and providing long-term support for v1.x releases.
23+
24+
Thank you to everyone who provided feedback during the preview releases!
25+
326
## [0.10.0](https://github.com/ably/ably-chat-kotlin/tree/v0.10.0)
427

528
[Full Changelog](https://github.com/ably/ably-chat-kotlin/compare/v0.9.0...v0.10.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:0.10.0'
48+
implementation 'com.ably.chat:chat:1.0.0'
4949
```
5050

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

5353
```kotlin
54-
implementation("com.ably.chat:chat:0.10.0")
54+
implementation("com.ably.chat:chat:1.0.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=0.10.0
21+
VERSION_NAME=1.0.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.0"
5+
ably = "1.4.1"
66
junit = "4.13.2"
77
agp = "8.5.2"
88
detekt = "1.23.6"

0 commit comments

Comments
 (0)