Skip to content

Commit

Permalink
PubNub Swift Chat SDK 0.10.2 release (#16)
Browse files Browse the repository at this point in the history
fix(messages): fix the bug with messages being deleted from Message Persistence
  • Loading branch information
jguz-pubnub authored Jan 14, 2025
1 parent 3bd57c0 commit c5b7919
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
9 changes: 7 additions & 2 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: swift-chat-sdk
scm: github.com/pubnub/swift-chat-sdk
version: 0.10.1
version: 0.10.2
schema: 1
changelog:
- date: 2025-01-14
version: 0.10.2
changes:
- type: bug
text: "Fix the bug with messages being deleted from Message Persistence."
- date: 2025-01-09
version: 0.10.1
changes:
Expand Down Expand Up @@ -90,7 +95,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: PubNubSwiftChatSDK
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.10.1-dev.zip
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.10.2-dev.zip
supported-platforms:
supported-operating-systems:
iOS:
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/pubnub/kmp-chat", exact: "0.10.0-dev"),
.package(url: "https://github.com/pubnub/swift", exact: "8.2.3")
.package(url: "https://github.com/pubnub/kmp-chat", exact: "0.10.1-dev"),
.package(url: "https://github.com/pubnub/swift", exact: "8.2.4")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand Down
8 changes: 4 additions & 4 deletions PubNubSwiftChatSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.10.1;
MARKETING_VERSION = 0.10.2;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
Expand Down Expand Up @@ -782,7 +782,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.10.1;
MARKETING_VERSION = 0.10.2;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
Expand Down Expand Up @@ -886,15 +886,15 @@
repositoryURL = "https://github.com/pubnub/kmp-chat/";
requirement = {
kind = exactVersion;
version = "0.10.0-dev";
version = "0.10.1-dev";
};
};
3DCF7DFA2CD0FFCC00889326 /* XCRemoteSwiftPackageReference "swift" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/pubnub/swift";
requirement = {
kind = exactVersion;
version = 8.2.3;
version = 8.2.4;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
1. Create or open your project inside Xcode.
2. Navigate to **File -> Add Package Dependencies**.
3. Search for `https://github.com/pubnub/swift-chat-sdk`
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.10.1-dev`
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.10.2-dev`
5. Click the **Add Package** button.

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)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Miscellaneous/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

import Foundation

let pubNubSwiftChatSDKVersion: String = "0.10.1"
let pubNubSwiftChatSDKVersion: String = "0.10.2"

0 comments on commit c5b7919

Please sign in to comment.