File tree Expand file tree Collapse file tree 7 files changed +11
-9
lines changed Expand file tree Collapse file tree 7 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ 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/5.1.1...HEAD )
7
+ ## [ Unreleased] ( https://github.com/pusher/pusher-websocket-swift/compare/6.0.0...HEAD )
8
+
9
+ ## [ 6.0.0] ( https://github.com/pusher/pusher-websocket-swift/compare/5.1.1...6.0.0 ) - 2018-04-04
8
10
9
11
### Added
10
12
Original file line number Diff line number Diff line change 1
1
github "ashleymills/Reachability.swift" "v4.1.0"
2
2
github "hamchapman/Starscream" "3.0.6"
3
- github "icanzilb/TaskQueue" "1.1.0 "
3
+ github "icanzilb/TaskQueue" "1.1.1 "
4
4
github "krzyzanowskim/CryptoSwift" "0.9.0"
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 = '5.1.1 '
3
+ s . version = '6.0.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'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
13
13
14
14
s . dependency 'CryptoSwift' , '~> 0.9.0'
15
15
s . dependency 'ReachabilitySwift' , '~> 4.1.0'
16
- s . dependency 'TaskQueue' , '~> 1.1.0 '
16
+ s . dependency 'TaskQueue' , '~> 1.1.1 '
17
17
s . dependency 'StarscreamFork' , '~> 3.0.6'
18
18
19
19
s . ios . deployment_target = '8.0'
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 >5.1.1 </string >
18
+ <string >6.0.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 StarscreamFork
3
3
4
4
let PROTOCOL = 7
5
- let VERSION = " 5.1.1 "
5
+ let VERSION = " 6.0.0 "
6
6
let CLIENT_NAME = " pusher-websocket-swift "
7
7
8
8
@objcMembers
@@ -125,7 +125,7 @@ let CLIENT_NAME = "pusher-websocket-swift"
125
125
open func unsubscribe( _ channelName: String ) {
126
126
self . connection. unsubscribe ( channelName: channelName)
127
127
}
128
-
128
+
129
129
/**
130
130
Unsubscribes the client from all channels
131
131
*/
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 >5.1.1 </string >
18
+ <string >6.0.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 9
9
import PusherSwift
10
10
import XCTest
11
11
12
- let VERSION = " 5.1.1 "
12
+ let VERSION = " 6.0.0 "
13
13
14
14
class ClientInitializationTests : XCTestCase {
15
15
var key : String !
You can’t perform that action at this time.
0 commit comments