Skip to content

Commit

Permalink
PubNub SDK 0.9.3-dev release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot authored and jguz-pubnub committed Dec 18, 2024
1 parent f1a8a19 commit d38e9b1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
13 changes: 11 additions & 2 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -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
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:
Expand Down Expand Up @@ -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-dev.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 @@ -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";
Expand Down Expand Up @@ -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";
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.9.2"
let pubNubSwiftChatSDKVersion: String = "0.9.3"
2 changes: 1 addition & 1 deletion Tests/ChannelIntegrationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ class ChannelIntegrationTests: PubNubSwiftChatSDKIntegrationTests {
XCTAssertEqual(retrievedMessage?.meta?["a"]?.codableValue.rawValue as? Int, 123)
XCTAssertEqual(retrievedMessage?.meta?["b"]?.codableValue.rawValue as? String, "someString")
}

func testChannel_SendText() throws {
let tt = try awaitResultValue {
channel.sendText(
Expand Down

0 comments on commit d38e9b1

Please sign in to comment.