File tree Expand file tree Collapse file tree 7 files changed +17
-7
lines changed Expand file tree Collapse file tree 7 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,17 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7- ## [ Unreleased] ( https://github.com/pusher/pusher-websocket-swift/compare/7.1.0...HEAD )
7+ ## [ Unreleased] ( https://github.com/pusher/pusher-websocket-swift/compare/7.2.0...HEAD )
8+
9+ ## [ 7.2.0] ( https://github.com/pusher/pusher-websocket-swift/compare/7.1.0...7.2.0 ) - 2019-10-18
10+
11+ ### Added
12+
13+ - Added support for Swift Package Manager ([ @JonathanDowning ] ( https://github.com/JonathanDowning ) ).
14+
15+ ### Fixed
16+
17+ - Fixed a compilation warning caused by incorrect parameter names in documentation comments ([ @funkyboy ] ( https://github.com/funkyboy ) ).
818
919## [ 7.1.0] ( https://github.com/pusher/pusher-websocket-swift/compare/7.0.0...7.1.0 ) - 2019-10-03
1020
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'PusherSwift'
3- s . version = '7.1 .0'
3+ s . version = '7.2 .0'
44 s . summary = 'A Pusher client library in Swift'
55 s . homepage = 'https://github.com/pusher/pusher-websocket-swift'
66 s . license = 'MIT'
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ source 'https://github.com/CocoaPods/Specs.git'
7272platform :ios , ' 10.0'
7373use_frameworks!
7474
75- pod ' PusherSwift' , ' ~> 7.1 '
75+ pod ' PusherSwift' , ' ~> 7.2 '
7676```
7777
7878Then, run the following command:
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >7.1 .0 </string >
18+ <string >7.2 .0 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Foundation
22import Starscream
33
44let PROTOCOL = 7
5- let VERSION = " 7.1 .0 "
5+ let VERSION = " 7.2 .0 "
66let CLIENT_NAME = " pusher-websocket-swift "
77
88@objcMembers
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >BNDL </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >7.1 .0 </string >
18+ <string >7.2 .0 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 11import PusherSwift
22import XCTest
33
4- let VERSION = " 7.1 .0 "
4+ let VERSION = " 7.2 .0 "
55
66class ClientInitializationTests : XCTestCase {
77 var key : String !
You can’t perform that action at this time.
0 commit comments