Skip to content

Commit f977297

Browse files
committed
Bump to version 0.2.0
1 parent 5ad8bb5 commit f977297

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.2.0
4+
5+
* Add platform-specific builds for iOS, tvOS, OSX
6+
* Add build and test schemes for platform-specific builds
7+
* Update Starscream to 1.1.1
8+
* POST auth parameter with HTTP Body (@ngs)
9+
310
## 0.1.7
411

512
###### Misc

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.1.7'
3+
s.version = '0.2.0'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher-community/pusher-websocket-swift'
66
s.license = 'MIT'

Source/PusherSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public typealias PusherUserInfoObject = Dictionary<String, AnyObject>
1515
public typealias PusherUserData = PresenceChannelMember
1616

1717
let PROTOCOL = 7
18-
let VERSION = "0.1.7"
18+
let VERSION = "0.2.0"
1919
let CLIENT_NAME = "pusher-websocket-swift"
2020

2121
public class Pusher {

Tests/PusherSwiftTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Nimble
1212
import Starscream
1313
import PusherSwift
1414

15-
let VERSION = "0.1.7"
15+
let VERSION = "0.2.0"
1616

1717
// Setup mock objects that we will need
1818
public class MockWebSocket: WebSocket {

0 commit comments

Comments
 (0)