Skip to content

Commit

Permalink
Prep version 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrees committed Mar 9, 2022
1 parent 1ed45a3 commit cc9504f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format
This product uses [Semantic Versioning](https://semver.org/).


## 5.1.0
* Improves reconnection logic around a heartbeat timeout

## 5.0.0
* Removes RxSwift dependency
* Removes Starscream dependency
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Podfile. Keep in mind that in order to use Swift Phoenix Client, the minimum iOS
target must be '9.0'

```RUBY
pod "SwiftPhoenixClient", '~> 5.0'
pod "SwiftPhoenixClient", '~> 5.1'
```

and running `pod install`. From there you will need to add `import SwiftPhoenixClient` in any class you want it to be used.
Expand All @@ -76,7 +76,7 @@ If you use Carthage to manage your dependencies, simply add
SwiftPhoenixClient to your `Cartfile`:

```
github "davidstump/SwiftPhoenixClient" ~> 5.0
github "davidstump/SwiftPhoenixClient" ~> 5.1
```

Then run `carthage update`.
Expand All @@ -92,7 +92,7 @@ _Note: Instructions below are for using **SwiftPM** without the Xcode UI. It's t
To integrate using Apple's Swift package manager, without Xcode integration, add the following as a dependency to your `Package.swift`:

```swift
.package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMajor(from: "5.0.0"))
.package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMajor(from: "5.1.0"))
```

and then specify `"SwiftPhoenixClient"` as a dependency of the Target in which you wish to use SwiftPhoenixClient.
Expand Down
2 changes: 1 addition & 1 deletion SwiftPhoenixClient.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "SwiftPhoenixClient"
s.version = "5.0.0"
s.version = "5.1.0"
s.summary = "Connect your Phoenix and iOS applications through WebSockets!"
s.swift_version = "5.0"
s.description = <<-EOS
Expand Down

0 comments on commit cc9504f

Please sign in to comment.