Skip to content

Commit 7b6aae0

Browse files
PubNub SDK 0.11.0-dev release.
1 parent eda4988 commit 7b6aae0

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.pubnub.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ scm: github.com/pubnub/swift-chat-sdk
33
version: 0.10.3
44
schema: 1
55
changelog:
6+
- date: 2025-01-28
7+
version: 0.11.0-dev
8+
changes:
9+
- type: feature
10+
text: "This method can be used to update data on the server without losing intermediate updates that might have happened in the time between when the object was last received and updated."
11+
- type: feature
12+
text: "There are `chat.mutedUsersManager.mute(userId:completion:)` and `chat.mutedUsersManager.unmuteUser(userId:completion:)` to mute and unmute a user, respectively."
13+
- type: feature
14+
text: "Add the option to automatically sync the mute list by enabling `ChatConfiguration.syncMutedUsers`."
15+
- type: feature
16+
text: "Add missing function to parse quoted message text into `[MessageElement]`."
17+
- type: bug
18+
text: "Fix the problem of overwriting custom data at regular intervals when `storeUserActivityInterval` is enabled."
619
- date: 2025-01-23
720
version: 0.10.3
821
changes:
@@ -100,7 +113,7 @@ sdks:
100113
- distribution-type: source
101114
distribution-repository: GitHub release
102115
package-name: PubNubSwiftChatSDK
103-
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.10.3-dev.zip
116+
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.11.0.zip
104117
supported-platforms:
105118
supported-operating-systems:
106119
iOS:

PubNubSwiftChatSDK.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@
745745
"@loader_path/Frameworks",
746746
);
747747
MACOSX_DEPLOYMENT_TARGET = 11.0;
748-
MARKETING_VERSION = 0.10.3;
748+
MARKETING_VERSION = 0.11.0;
749749
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
750750
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
751751
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
@@ -794,7 +794,7 @@
794794
"@loader_path/Frameworks",
795795
);
796796
MACOSX_DEPLOYMENT_TARGET = 11.0;
797-
MARKETING_VERSION = 0.10.3;
797+
MARKETING_VERSION = 0.11.0;
798798
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
799799
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
800800
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.10.3"
13+
let pubNubSwiftChatSDKVersion: String = "0.11.0"

0 commit comments

Comments
 (0)