From 6f89e35d6338be27d4a7fffc7e3a68665b24b3ce Mon Sep 17 00:00:00 2001 From: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:40:18 +0000 Subject: [PATCH] PubNub SDK 8.2.0 release. --- .pubnub.yml | 27 ++++++++++++++++++++++++-- PubNub.xcodeproj/project.pbxproj | 16 +++++++-------- PubNubSwift.podspec | 2 +- Sources/PubNub/Helpers/Constants.swift | 2 +- 4 files changed, 35 insertions(+), 12 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index 5c6f1a18..518013c6 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,9 +1,32 @@ --- name: swift scm: github.com/pubnub/swift -version: "8.1.0" +version: "8.2.0" schema: 1 changelog: + - date: 2024-12-04 + version: 8.2.0 + changes: + - type: feature + text: "Add support for the Membership `type` field." + - type: feature + text: "Deprecate methods containing `uuid` parameter, introduce new versions." + - type: feature + text: "Deprecate methods containing `include` parameter of `Bool` type, introduce new versions." + - type: feature + text: "Deprecate `remove(channel:custom:completion:)`, introduce new version ." + - type: feature + text: "Replace `PubNubUUIDMetadata` with `PubNubUserMetadata`." + - type: feature + text: "Replace `PubNubUUIDMetadataBase` with `PubNubUserMetadataBase`." + - type: feature + text: "Add an alias for backward compatibility with the customer code using `PubNubUUIDMetadata`." + - type: feature + text: "Add an alias for backward compatibility with the customer code using `PubNubUUIDMetadataBase`." + - type: feature + text: "Replace `PubNubUUIDMetadataChangeset` with `PubNubUserMetadataChangeset`." + - type: feature + text: "Add an alias for backward compatibility with the customer code using `PubNubUUIDMetadataChangeset`." - date: 2024-11-18 version: 8.1.0 changes: @@ -596,7 +619,7 @@ sdks: - distribution-type: source distribution-repository: GitHub release package-name: PubNub - location: https://github.com/pubnub/swift/archive/refs/tags/8.1.0.zip + location: https://github.com/pubnub/swift/archive/refs/tags/8.2.0.zip supported-platforms: supported-operating-systems: macOS: diff --git a/PubNub.xcodeproj/project.pbxproj b/PubNub.xcodeproj/project.pbxproj index 0ba9db33..56c85fb8 100644 --- a/PubNub.xcodeproj/project.pbxproj +++ b/PubNub.xcodeproj/project.pbxproj @@ -3995,7 +3995,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; @@ -4046,7 +4046,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; @@ -4154,7 +4154,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; @@ -4207,7 +4207,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; @@ -4328,7 +4328,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; @@ -4380,7 +4380,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17"; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; @@ -4860,7 +4860,7 @@ "$(TOOLCHAIN_DIR)/usr/lib/swift/macosx", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++14"; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; @@ -4903,7 +4903,7 @@ "$(TOOLCHAIN_DIR)/usr/lib/swift/macosx", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 8.1.0; + MARKETING_VERSION = 8.2.0; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++14"; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; diff --git a/PubNubSwift.podspec b/PubNubSwift.podspec index d32f5f39..05388197 100644 --- a/PubNubSwift.podspec +++ b/PubNubSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PubNubSwift' - s.version = '8.1.0' + s.version = '8.2.0' s.homepage = 'https://github.com/pubnub/swift' s.documentation_url = 'https://www.pubnub.com/docs/swift-native/pubnub-swift-sdk' s.authors = { 'PubNub, Inc.' => 'support@pubnub.com' } diff --git a/Sources/PubNub/Helpers/Constants.swift b/Sources/PubNub/Helpers/Constants.swift index 1f60a8f6..e7cfb76a 100644 --- a/Sources/PubNub/Helpers/Constants.swift +++ b/Sources/PubNub/Helpers/Constants.swift @@ -57,7 +57,7 @@ public enum Constant { static let pubnubSwiftSDKName: String = "PubNubSwift" - static let pubnubSwiftSDKVersion: String = "8.1.0" + static let pubnubSwiftSDKVersion: String = "8.2.0" static let appBundleId: String = { if let info = Bundle.main.infoDictionary,