Skip to content

Commit c07d51e

Browse files
committed
Bump to 6.0.0
1 parent 598cfb1 commit c07d51e

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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/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
810

911
### Added
1012

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "ashleymills/Reachability.swift" "v4.1.0"
22
github "hamchapman/Starscream" "3.0.6"
3-
github "icanzilb/TaskQueue" "1.1.0"
3+
github "icanzilb/TaskQueue" "1.1.1"
44
github "krzyzanowskim/CryptoSwift" "0.9.0"

PusherSwift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PusherSwift'
3-
s.version = '5.1.1'
3+
s.version = '6.0.0'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313

1414
s.dependency 'CryptoSwift', '~> 0.9.0'
1515
s.dependency 'ReachabilitySwift', '~> 4.1.0'
16-
s.dependency 'TaskQueue', '~> 1.1.0'
16+
s.dependency 'TaskQueue', '~> 1.1.1'
1717
s.dependency 'StarscreamFork', '~> 3.0.6'
1818

1919
s.ios.deployment_target = '8.0'

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.1.1</string>
18+
<string>6.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/PusherSwift.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22
import StarscreamFork
33

44
let PROTOCOL = 7
5-
let VERSION = "5.1.1"
5+
let VERSION = "6.0.0"
66
let CLIENT_NAME = "pusher-websocket-swift"
77

88
@objcMembers
@@ -125,7 +125,7 @@ let CLIENT_NAME = "pusher-websocket-swift"
125125
open func unsubscribe(_ channelName: String) {
126126
self.connection.unsubscribe(channelName: channelName)
127127
}
128-
128+
129129
/**
130130
Unsubscribes the client from all channels
131131
*/

Tests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.1.1</string>
18+
<string>6.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/PusherClientInitializationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import PusherSwift
1010
import XCTest
1111

12-
let VERSION = "5.1.1"
12+
let VERSION = "6.0.0"
1313

1414
class ClientInitializationTests: XCTestCase {
1515
var key: String!

0 commit comments

Comments
 (0)