Skip to content

Commit 05d155c

Browse files
PubNub SDK 0.20.0 release.
1 parent 13e8bce commit 05d155c

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

.pubnub.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ scm: github.com/pubnub/swift-chat-sdk
33
version: 0.12.0
44
schema: 1
55
changelog:
6+
- date: 2025-03-25
7+
version: 0.20.0
8+
changes:
9+
- type: feature
10+
text: "Add async/await counterparts to existing closure-based methods."
11+
- type: feature
12+
text: "Add `AsyncStream` counterparts for methods returning `AutoCloseable`."
13+
- type: feature
14+
text: "Add a new Test Plan testing async-await methods."
15+
- type: feature
16+
text: "Add the new way to create a thread message."
17+
- type: bug
18+
text: "Provide a default `ChatConfiguration()` value in the `ChatImpl` constructor."
19+
- type: bug
20+
text: "Provide a default value for the `limit` parameter in the Chat's `getUsers(filter:sort:limit:page:completion:)`."
21+
- type: bug
22+
text: "Fix `PubNub.MembershipSortField` to handle all user sort options properly."
623
- date: 2025-03-21
724
version: 0.12.0
825
changes:
@@ -133,7 +150,7 @@ sdks:
133150
- distribution-type: source
134151
distribution-repository: GitHub release
135152
package-name: PubNubSwiftChatSDK
136-
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.12.0.zip
153+
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.20.0.zip
137154
supported-platforms:
138155
supported-operating-systems:
139156
iOS:

PubNubSwiftChatSDK.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@
951951
"@loader_path/Frameworks",
952952
);
953953
MACOSX_DEPLOYMENT_TARGET = 11.0;
954-
MARKETING_VERSION = 0.12.0;
954+
MARKETING_VERSION = 0.20.0;
955955
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
956956
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
957957
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -1000,7 +1000,7 @@
10001000
"@loader_path/Frameworks",
10011001
);
10021002
MACOSX_DEPLOYMENT_TARGET = 11.0;
1003-
MARKETING_VERSION = 0.12.0;
1003+
MARKETING_VERSION = 0.20.0;
10041004
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
10051005
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
10061006
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";

Sources/Miscellaneous/Constants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
import Foundation
1212

13-
let pubNubSwiftChatSDKVersion: String = "0.12.0"
13+
let pubNubSwiftChatSDKVersion: String = "0.20.0"

0 commit comments

Comments
 (0)