Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## [1.0.0](https://github.com/ably/ably-chat-swift/tree/1.0.0)

We are excited to announce that the Ably Chat SDK API is now stable.

The Chat SDK includes comprehensive support for:

- Chat rooms for 1:1, 1:many, many:1 and many:many participation
- Messages with full CRUD operations (create, read, update, delete)
- Presence to track online status of chat participants
- Occupancy for monitoring total connections and presence members
- Typing indicators for real-time typing awareness
- Room reactions for real-time room reactions
- Message reactions for reactions to specific messages

We are committed to maintaining API stability and providing long-term support for v1.x releases.

Thank you to everyone who provided feedback during the preview releases!

## [0.9.1](https://github.com/ably/ably-chat-swift/tree/0.9.1)

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion Sources/AblyChat/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Ably
/// Information about the Chat SDK.
internal enum ClientInformation {
/// The version number of this version of the Chat SDK.
internal static let version = "0.9.1"
internal static let version = "1.0.0"

/// The agents to pass to `createWrapperSDKProxy` per CHA-IN1b.
internal static let agents = ["chat-swift": Self.version]
Expand Down