diff --git a/.gitignore b/.gitignore index c20a5a4..1526467 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,7 @@ Packages/ Package.pins .swiftpm .build +PubNubSwiftChatSDK.xcworkspace/xcshareddata/swiftpm # CocoaPods # diff --git a/Package.resolved b/Package.resolved index c279539..47b7c60 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pubnub/kmp-chat", "state" : { - "revision" : "a2a433d17ca2364b3381a7ff3cd2223c88f6206e", - "version" : "0.8.1-dev" + "revision" : "d648292b9caa64391626c4ae760fd544b0d8ee82", + "version" : "0.8.2-dev" } }, { diff --git a/Package.swift b/Package.swift index 2609fc0..783ab03 100644 --- a/Package.swift +++ b/Package.swift @@ -14,7 +14,7 @@ let package = Package( ) ], dependencies: [ - .package(url: "https://github.com/pubnub/kmp-chat", exact: "0.8.1-dev"), + .package(url: "https://github.com/pubnub/kmp-chat", exact: "0.8.2-dev"), .package(url: "https://github.com/pubnub/swift", exact: "8.0.0") ], targets: [ diff --git a/PubNubSwiftChatSDK.xcodeproj/project.pbxproj b/PubNubSwiftChatSDK.xcodeproj/project.pbxproj index 44e1aa5..0949718 100644 --- a/PubNubSwiftChatSDK.xcodeproj/project.pbxproj +++ b/PubNubSwiftChatSDK.xcodeproj/project.pbxproj @@ -701,7 +701,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 12.0; - MARKETING_VERSION = 0.8.1; + MARKETING_VERSION = 0.8.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; @@ -750,7 +750,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 12.0; - MARKETING_VERSION = 0.8.1; + MARKETING_VERSION = 0.8.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; @@ -862,7 +862,7 @@ repositoryURL = "https://github.com/pubnub/kmp-chat"; requirement = { kind = exactVersion; - version = "0.8.1-dev"; + version = "0.8.2-dev"; }; }; /* End XCRemoteSwiftPackageReference section */ diff --git a/README.md b/README.md index c0c05f8..1a069e4 100644 --- a/README.md +++ b/README.md @@ -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.8.1-dev` +4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.8.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) diff --git a/Sources/ChatImpl.swift b/Sources/ChatImpl.swift index ff2beea..b1a9213 100644 --- a/Sources/ChatImpl.swift +++ b/Sources/ChatImpl.swift @@ -43,7 +43,7 @@ public final class ChatImpl { chat = ChatImpl.createKMPChat(from: pubNub, config: chatConfiguration) // Provide a mechanism for reading a version number from a .plist file. - pubNub.setConsumer(identifier: "chat-sdk", value: "CA-SWIFT/0.8.1") + pubNub.setConsumer(identifier: "chat-sdk", value: "CA-SWIFT/0.8.2") // Creates an association between KMP chat and the current instance ChatAdapter.associate(chat: self, rawChat: chat) } @@ -54,7 +54,7 @@ public final class ChatImpl { chat = ChatImpl.createKMPChat(from: pubNub, config: configuration) // Provide a mechanism for reading a version number from a .plist file. - pubNub.setConsumer(identifier: "chat-sdk", value: "CA-SWIFT/0.8.1") + pubNub.setConsumer(identifier: "chat-sdk", value: "CA-SWIFT/0.8.2") // Creates an association between KMP chat and the current instance ChatAdapter.associate(chat: self, rawChat: chat) }