diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ff3fc8b..337e6d12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [0.3.0](https://github.com/ably/ably-chat-swift/tree/0.3.0) + +## What's Changed + +- All of the main protocols in the SDK are now marked as `@MainActor`, to simplify the experience of using the SDK. (#261) +- All of the errors thrown by the SDK are now explicitly typed as `ARTErrorInfo`. (#234) + +**Full Changelog**: https://github.com/ably/ably-chat-swift/compare/0.2.0...0.3.0 + ## [0.2.0](https://github.com/ably/ably-chat-swift/tree/0.2.0) ## What's Changed diff --git a/Sources/AblyChat/Version.swift b/Sources/AblyChat/Version.swift index 4d2a22b3..013a78e7 100644 --- a/Sources/AblyChat/Version.swift +++ b/Sources/AblyChat/Version.swift @@ -4,6 +4,6 @@ import Ably // Update this when you release a new version // Version information -internal let version = "0.2.0" +internal let version = "0.3.0" internal let agents = ["chat-swift": version]