Skip to content

Commit

Permalink
Updating README.md and PubNubSwift.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jguz-pubnub committed Feb 22, 2024
1 parent c487804 commit f003a40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions PubNubSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
```

Expand All @@ -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:
Expand All @@ -96,7 +96,7 @@ carthage update
var config = PubNubConfiguration(
publishKey: "myPublishKey",
subscribeKey: "mySubscribeKey",
uuid: "myUniqueUUID"
userId: "myUniqueUserId"
)
let pubnub = PubNub(configuration: config)
```
Expand Down

0 comments on commit f003a40

Please sign in to comment.