Skip to content

Commit 73acee9

Browse files
committed
Merge branch 'master' into feat/channel-groups
2 parents 4240773 + 7d03fb1 commit 73acee9

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.pubnub.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: swift-chat-sdk
22
scm: github.com/pubnub/swift-chat-sdk
3-
version: 0.30.2
3+
version: 0.30.3
44
schema: 1
55
changelog:
6+
- date: 2025-08-01
7+
version: 0.30.3
8+
changes:
9+
- type: bug
10+
text: "Update dependencies to resolve the issue with unstable hash computation."
611
- date: 2025-06-12
712
version: 0.30.2
813
changes:
@@ -177,7 +182,7 @@ sdks:
177182
- distribution-type: source
178183
distribution-repository: GitHub release
179184
package-name: PubNubSwiftChatSDK
180-
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.30.2.zip
185+
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.30.3.zip
181186
supported-platforms:
182187
supported-operating-systems:
183188
iOS:

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ let package = Package(
1818
)
1919
],
2020
dependencies: [
21-
.package(url: "https://github.com/pubnub/kmp-chat", exact: "0.14.0-swift"),
22-
.package(url: "https://github.com/pubnub/swift", exact: "9.2.0")
21+
.package(url: "https://github.com/pubnub/kmp-chat", exact: "0.15.1-swift"),
22+
.package(url: "https://github.com/pubnub/swift", exact: "9.3.1")
2323
],
2424
targets: [
2525
// Targets are the basic building blocks of a package, defining a module or a test suite.

PubNubSwiftChatSDK.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@
968968
"@loader_path/Frameworks",
969969
);
970970
MACOSX_DEPLOYMENT_TARGET = 11.0;
971-
MARKETING_VERSION = 0.30.2;
971+
MARKETING_VERSION = 0.30.3;
972972
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
973973
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
974974
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -1016,7 +1016,7 @@
10161016
"@loader_path/Frameworks",
10171017
);
10181018
MACOSX_DEPLOYMENT_TARGET = 11.0;
1019-
MARKETING_VERSION = 0.30.2;
1019+
MARKETING_VERSION = 0.30.3;
10201020
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
10211021
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
10221022
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -1129,15 +1129,15 @@
11291129
repositoryURL = "https://github.com/pubnub/kmp-chat";
11301130
requirement = {
11311131
kind = exactVersion;
1132-
version = "0.14.0-swift";
1132+
version = "0.15.1-swift";
11331133
};
11341134
};
11351135
3DCF7DFA2CD0FFCC00889326 /* XCRemoteSwiftPackageReference "swift" */ = {
11361136
isa = XCRemoteSwiftPackageReference;
11371137
repositoryURL = "https://github.com/pubnub/swift";
11381138
requirement = {
11391139
kind = exactVersion;
1140-
version = 9.2.0;
1140+
version = 9.3.1;
11411141
};
11421142
};
11431143
/* End XCRemoteSwiftPackageReference section */

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.30.2"
13+
let pubNubSwiftChatSDKVersion: String = "0.30.3"

0 commit comments

Comments
 (0)