diff --git a/.pubnub.yml b/.pubnub.yml index 90963db..7861a8e 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,9 +1,18 @@ --- name: swift-chat-sdk scm: github.com/pubnub/swift-chat-sdk -version: "0.9.2" +version: "0.9.3" schema: 1 changelog: + - date: 2024-12-18 + version: 0.9.3-dev + changes: + - type: bug + text: "Add missing initialization for `reactionsActionName` property." + - type: bug + text: "Add missing `completion:` parameter when sending a text." + - type: improvement + text: "Run `swiftformat` to uplift the codebase." - date: 2024-12-17 version: 0.9.2 changes: @@ -68,7 +77,7 @@ sdks: - distribution-type: source distribution-repository: GitHub release package-name: PubNubSwiftChatSDK - location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.9.2-dev.zip + location: https://github.com/pubnub/swift-chat-sdk/archive/refs/tags/0.9.3.zip supported-platforms: supported-operating-systems: iOS: diff --git a/PubNubSwiftChatSDK.xcodeproj/project.pbxproj b/PubNubSwiftChatSDK.xcodeproj/project.pbxproj index 277aace..e51fdb3 100644 --- a/PubNubSwiftChatSDK.xcodeproj/project.pbxproj +++ b/PubNubSwiftChatSDK.xcodeproj/project.pbxproj @@ -733,7 +733,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 0.9.2; + MARKETING_VERSION = 0.9.3; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; @@ -782,7 +782,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 0.9.2; + MARKETING_VERSION = 0.9.3; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; diff --git a/Sources/Miscellaneous/Constants.swift b/Sources/Miscellaneous/Constants.swift index 8ec1889..3860e44 100644 --- a/Sources/Miscellaneous/Constants.swift +++ b/Sources/Miscellaneous/Constants.swift @@ -10,4 +10,4 @@ import Foundation -let pubNubSwiftChatSDKVersion: String = "0.9.2" +let pubNubSwiftChatSDKVersion: String = "0.9.3"