Skip to content

Commit de707bc

Browse files
committed
Bump version to 1.0.0
1 parent fd67919 commit de707bc

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44

55
* Add `onMemberAdded`, `onMemberRemoved`, `findMember`, and `me` functions to PresencePusherChannel class
66
* Bring CryptoSwift, Starscream and Reachability dependencies inside the PusherSwift library
7-
* Update Quick and Nimble dependencies to remove warnings for Swift 2.2 and 3.0 compatibility
7+
* Update Quick and Nimble dependencies to remove warnings for Swift compatibility
88
* Use cocoapods version 1.0.0 on Travis
99
* Split up `PusherSwift.swift` and `PusherSwiftTests.swift` into components
1010
* Add inline documentation throughout codebase
11+
* Added `debugLogger` option to client
12+
* Handling of `pusher:error` messages now works as it should have done all along
13+
* Building with Carthage now now longer requires a `pod install` to make it work
14+
* Fix bug in `ConnectionStateChangeDelegate`
15+
* Pass authorization errors to client ([@psycotica0](https://github.com/psycotica0))
1116

1217
## 0.3.0
1318

PusherSwift.podspec

Lines changed: 1 addition & 1 deletion
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 = '0.3.0'
3+
s.version = '1.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'

Source/PusherSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public typealias PusherEventJSON = Dictionary<String, AnyObject>
1111
public typealias PusherUserData = PresenceChannelMember
1212

1313
let PROTOCOL = 7
14-
let VERSION = "0.3.0"
14+
let VERSION = "1.0.0"
1515
let CLIENT_NAME = "pusher-websocket-swift"
1616

1717
public class Pusher {

Tests/PusherClientInitializationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Quick
1111
import Nimble
1212
import PusherSwift
1313

14-
let VERSION = "0.3.0"
14+
let VERSION = "1.0.0"
1515

1616
class PusherClientInitializationSpec: QuickSpec {
1717
override func spec() {

0 commit comments

Comments
 (0)