Skip to content

Commit c5b7919

Browse files
authored
PubNub Swift Chat SDK 0.10.2 release (#16)
fix(messages): fix the bug with messages being deleted from Message Persistence
1 parent 3bd57c0 commit c5b7919

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
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.10.1
3+
version: 0.10.2
44
schema: 1
55
changelog:
6+
- date: 2025-01-14
7+
version: 0.10.2
8+
changes:
9+
- type: bug
10+
text: "Fix the bug with messages being deleted from Message Persistence."
611
- date: 2025-01-09
712
version: 0.10.1
813
changes:
@@ -90,7 +95,7 @@ sdks:
9095
- distribution-type: source
9196
distribution-repository: GitHub release
9297
package-name: PubNubSwiftChatSDK
93-
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.10.1-dev.zip
98+
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.10.2-dev.zip
9499
supported-platforms:
95100
supported-operating-systems:
96101
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.10.0-dev"),
22-
.package(url: "https://github.com/pubnub/swift", exact: "8.2.3")
21+
.package(url: "https://github.com/pubnub/kmp-chat", exact: "0.10.1-dev"),
22+
.package(url: "https://github.com/pubnub/swift", exact: "8.2.4")
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
@@ -733,7 +733,7 @@
733733
"@loader_path/Frameworks",
734734
);
735735
MACOSX_DEPLOYMENT_TARGET = 11.0;
736-
MARKETING_VERSION = 0.10.1;
736+
MARKETING_VERSION = 0.10.2;
737737
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
738738
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
739739
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -782,7 +782,7 @@
782782
"@loader_path/Frameworks",
783783
);
784784
MACOSX_DEPLOYMENT_TARGET = 11.0;
785-
MARKETING_VERSION = 0.10.1;
785+
MARKETING_VERSION = 0.10.2;
786786
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
787787
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
788788
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -886,15 +886,15 @@
886886
repositoryURL = "https://github.com/pubnub/kmp-chat/";
887887
requirement = {
888888
kind = exactVersion;
889-
version = "0.10.0-dev";
889+
version = "0.10.1-dev";
890890
};
891891
};
892892
3DCF7DFA2CD0FFCC00889326 /* XCRemoteSwiftPackageReference "swift" */ = {
893893
isa = XCRemoteSwiftPackageReference;
894894
repositoryURL = "https://github.com/pubnub/swift";
895895
requirement = {
896896
kind = exactVersion;
897-
version = 8.2.3;
897+
version = 8.2.4;
898898
};
899899
};
900900
/* End XCRemoteSwiftPackageReference section */

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
3737
1. Create or open your project inside Xcode.
3838
2. Navigate to **File -> Add Package Dependencies**.
3939
3. Search for `https://github.com/pubnub/swift-chat-sdk`
40-
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.10.1-dev`
40+
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.10.2-dev`
4141
5. Click the **Add Package** button.
4242

4343
For more information see Apple's guide on [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app)

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

0 commit comments

Comments
 (0)