Skip to content

Commit

Permalink
Bump to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hamchapman committed Sep 20, 2016
1 parent ff0ee65 commit 4cdaa3d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 3.1.0

* Fix bug in NativePusher where subscription modification requests would fail but not call the appropriate branch of the `guard` statement
* Add `PusherDelegate`, which includes optional functions related to Push Notification-related events
* Added TaskQueue and refactored how subscribe / unsubscribe events are sent to the Push Notifications service (to make it thread-safe)
* Added tests for NativePusher-related code paths

## 3.0.0

* Update to work with Swift 3
Expand Down Expand Up @@ -84,17 +91,13 @@

## 0.1.7

###### Misc

* Add support for tvOS as platform ([@goose2460](https://github.com/goose2460))
* Update CryptoSwift to 0.2.2 ([@goose2460](https://github.com/goose2460))
* Update ReachabilitySwift to 2.3.3 ([@goose2460](https://github.com/goose2460))
* Rename `Sources` back to `Source`

## 0.1.6

###### Misc

* Fixed build errors with Carthage
* Rename `Source` to `Sources` in order to work with Swift Package Manager (in principle)
* Make headers for PusherSwift and PusherSwiftTests targets public
2 changes: 1 addition & 1 deletion PusherSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PusherSwift'
s.version = '3.0.0'
s.version = '3.1.0'
s.summary = 'A Pusher client library in Swift'
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.0.0</string>
<string>3.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/PusherSwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

let PROTOCOL = 7
let VERSION = "3.0.0"
let VERSION = "3.1.0"
let CLIENT_NAME = "pusher-websocket-swift"

@objc open class Pusher: NSObject {
Expand Down
2 changes: 1 addition & 1 deletion Tests/PusherClientInitializationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import PusherSwift
import XCTest

let VERSION = "3.0.0"
let VERSION = "3.1.0"

class ClientInitializationTests: XCTestCase {
var key: String!
Expand Down

0 comments on commit 4cdaa3d

Please sign in to comment.