diff --git a/PubNubSwift.podspec b/PubNubSwift.podspec index e884181b..c4688940 100644 --- a/PubNubSwift.podspec +++ b/PubNubSwift.podspec @@ -14,10 +14,10 @@ The PubNub Real-Time Network. Build real-time apps quickly and scale them global DESC - s.ios.deployment_target = '11.0' - s.osx.deployment_target = '10.11' - s.tvos.deployment_target = '11.0' - s.watchos.deployment_target = '6.0' + s.ios.deployment_target = '12.0' + s.osx.deployment_target = '10.13' + s.tvos.deployment_target = '12.0' + s.watchos.deployment_target = '4.0' s.swift_version = '5.0' diff --git a/README.md b/README.md index a0c0fb40..29772441 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ PubNub takes care of the infrastructure and APIs needed for the realtime communi ## Requirements -* iOS 9.0+ / macOS 10.11+ / Mac Catalyst 13.0+ / tvOS 9.0+ / watchOS 2.0+ -* Xcode 11+ +* iOS 12.0+ / macOS 10.13+ / Mac Catalyst 13.0+ / tvOS 12.0+ / watchOS 4.0+ +* Xcode 15+ * Swift 5+ The PubNub Swift SDK doesn't contain any external dependencies. @@ -53,7 +53,7 @@ For more information see Apple's guide on [Adding Package Dependencies to Your A use_frameworks! target 'YOUR_TARGET_NAME' do - pod 'PubNubSwift', '~> 4.0' + pod 'PubNubSwift', '~> 7.0' end ``` @@ -72,7 +72,7 @@ Officially supported: Carthage 0.33 and up. Add the following to `Cartfile`: ```ruby -github "pubnub/swift" ~> 4.0 +github "pubnub/swift" ~> 7.0 ``` Then in the directory containing your `Cartfile`, execute the following: @@ -96,7 +96,7 @@ carthage update var config = PubNubConfiguration( publishKey: "myPublishKey", subscribeKey: "mySubscribeKey", - uuid: "myUniqueUUID" + userId: "myUniqueUserId" ) let pubnub = PubNub(configuration: config) ```