From 0c6d65dd693f2e324dc291440d6a70d5b7e5f853 Mon Sep 17 00:00:00 2001 From: Lawrence Forooghian Date: Mon, 14 Apr 2025 10:52:55 -0300 Subject: [PATCH] Release version 0.3.0 This was originally intended as a "fix compiler crash in Xcode 16.3" release, but actually it turns out 0.2.0 compiles fine in Xcode 16.3 (since we hadn't yet introduced typed throws). So instead it's now a "@MainActor and typed throws" release. Documentation changes are in https://github.com/ably/docs/pull/2532. --- CHANGELOG.md | 9 +++++++++ Sources/AblyChat/Version.swift | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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]