From 882231977f6381827ad564ccaff622de2d550477 Mon Sep 17 00:00:00 2001 From: dsrees Date: Mon, 6 Dec 2021 13:26:58 -0500 Subject: [PATCH] Prepare 4.0.0 --- CHANGELOG.md | 2 ++ README.md | 12 ++++++------ SwiftPhoenixClient.podspec | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7ffb9..fff450d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format This product uses [Semantic Versioning](https://semver.org/). +## 4.0.0 +* Updates RxSwift version to 6.x ## 3.0.0 This ia a **BREAKING** release. The following has changed to properly matched the phoenix.js library diff --git a/README.md b/README.md index 96c8bb5..4f41fa2 100644 --- a/README.md +++ b/README.md @@ -81,13 +81,13 @@ Podfile. Keep in mind that in order to use Swift Phoenix Client, the minimum iOS target must be '9.0' ```RUBY -pod "SwiftPhoenixClient", '~> 3.0' +pod "SwiftPhoenixClient", '~> 4.0' # If using RxSwift extensions -pod "SwiftPhoenixClient/RxSwift", '~> 3.0' +pod "SwiftPhoenixClient/RxSwift", '~> 4.0' # If targeting iOS < 13 -pod "SwiftPhoenixClient/Starscream", '~> 3.0' +pod "SwiftPhoenixClient/Starscream", '~> 4.0' ``` and running `pod install`. From there you will need to add `import SwiftPhoenixClient` in any class you want it to be used. @@ -98,7 +98,7 @@ If you use Carthage to manage your dependencies, simply add SwiftPhoenixClient to your `Cartfile`: ``` -github "davidstump/SwiftPhoenixClient" ~> 3.0 +github "davidstump/SwiftPhoenixClient" ~> 4.0 ``` Then run `carthage update`. @@ -115,7 +115,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: "3.0.0")) +.package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMajor(from: "4.0.0")) ``` and then specify `"SwiftPhoenixClient"` as a dependency of the Target in which you wish to use SwiftPhoenixClient. @@ -134,7 +134,7 @@ let package = Package( targets: ["MyPackage"]), ], dependencies: [ - .package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMajor(from: "3.0.0")) + .package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMajor(from: "4.0.0")) ], targets: [ .target( diff --git a/SwiftPhoenixClient.podspec b/SwiftPhoenixClient.podspec index 0f12b3d..68e5195 100644 --- a/SwiftPhoenixClient.podspec +++ b/SwiftPhoenixClient.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "SwiftPhoenixClient" - s.version = "3.0.0" + s.version = "4.0.0" s.summary = "Connect your Phoenix and iOS applications through WebSockets!" s.swift_version = "5.0" s.description = <<-EOS