File tree 7 files changed +17
-7
lines changed
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.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
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 ) ).
8
18
9
19
## [ 7.1.0] ( https://github.com/pusher/pusher-websocket-swift/compare/7.0.0...7.1.0 ) - 2019-10-03
10
20
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'PusherSwift'
3
- s . version = '7.1 .0'
3
+ s . version = '7.2 .0'
4
4
s . summary = 'A Pusher client library in Swift'
5
5
s . homepage = 'https://github.com/pusher/pusher-websocket-swift'
6
6
s . license = 'MIT'
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ source 'https://github.com/CocoaPods/Specs.git'
72
72
platform :ios , ' 10.0'
73
73
use_frameworks!
74
74
75
- pod ' PusherSwift' , ' ~> 7.1 '
75
+ pod ' PusherSwift' , ' ~> 7.2 '
76
76
```
77
77
78
78
Then, run the following command:
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >7.1 .0 </string >
18
+ <string >7.2 .0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Foundation
2
2
import Starscream
3
3
4
4
let PROTOCOL = 7
5
- let VERSION = " 7.1 .0 "
5
+ let VERSION = " 7.2 .0 "
6
6
let CLIENT_NAME = " pusher-websocket-swift "
7
7
8
8
@objcMembers
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >BNDL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >7.1 .0 </string >
18
+ <string >7.2 .0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
import PusherSwift
2
2
import XCTest
3
3
4
- let VERSION = " 7.1 .0 "
4
+ let VERSION = " 7.2 .0 "
5
5
6
6
class ClientInitializationTests : XCTestCase {
7
7
var key : String !
You can’t perform that action at this time.
0 commit comments