Skip to content

Commit

Permalink
PubNub SDK 0.11.0-dev release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot committed Jan 28, 2025
1 parent eda4988 commit 727c918
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ scm: github.com/pubnub/swift-chat-sdk
version: 0.10.3
schema: 1
changelog:
- date: 2025-01-28
version: 0.11.0-dev
changes:
- type: feature
text: "Add the new `update(updateAction:completion:)`method on User entity. 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."
- type: feature
text: "Add the ability to mute and unmute users on the Chat instance. There are `chat.mutedUsersManager.mute(userId:completion:)` and `chat.mutedUsersManager.unmuteUser(userId:completion:)` to mute and unmute a user, respectively."
- type: feature
text: "Add the option to automatically sync the mute list by enabling `ChatConfiguration.syncMutedUsers`."
- type: feature
text: "Add missing function to parse quoted message text into `[MessageElement]`."
- type: bug
text: "Fix the problem of overwriting custom data at regular intervals when `storeUserActivityInterval` is enabled."
- date: 2025-01-23
version: 0.10.3
changes:
Expand Down Expand Up @@ -100,7 +113,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.3-dev.zip
location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.11.0.zip
supported-platforms:
supported-operating-systems:
iOS:
Expand Down
4 changes: 2 additions & 2 deletions PubNubSwiftChatSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.10.3;
MARKETING_VERSION = 0.11.0;
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 @@ -794,7 +794,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.10.3;
MARKETING_VERSION = 0.11.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
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.3"
let pubNubSwiftChatSDKVersion: String = "0.11.0"

0 comments on commit 727c918

Please sign in to comment.