Skip to content

Commit 5108d81

Browse files
committed
Bump to version 0.2.1
1 parent 4bf4851 commit 5108d81

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

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

3+
## 0.2.1
4+
5+
* Remove Pods directory from repo
6+
* Change iOS deployment target to 8.0
7+
* Use cocoapods version 1.0.0.beta.2 to make builds work on Travis
8+
39
## 0.2.0
410

511
* Add platform-specific builds for iOS, tvOS, OSX

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
22
- CryptoSwift (0.2.2)
33
- Nimble (3.0.0)
4-
- PusherSwift (0.2.0):
4+
- PusherSwift (0.2.1):
55
- CryptoSwift (~> 0.2.2)
66
- ReachabilitySwift (~> 2.3.3)
77
- Starscream (~> 1.1.1)
@@ -24,7 +24,7 @@ EXTERNAL SOURCES:
2424
SPEC CHECKSUMS:
2525
CryptoSwift: d382228d6301c09474132417878a741c2a2e68cd
2626
Nimble: 4c353d43735b38b545cbb4cb91504588eb5de926
27-
PusherSwift: 77f0ace558a5a8dba20f4930d0a2375bd96a3be9
27+
PusherSwift: 6c63d63e5f817559f95669787ddbc1fa82b6c80f
2828
Quick: 563d0f6ec5f72e394645adb377708639b7dd38ab
2929
ReachabilitySwift: e0f6b6f280effb47731acfaaa2d5ffe223703793
3030
Starscream: d74dd8d122a6abd244d8d5e51f32891c796d0827

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.2.0'
3+
s.version = '0.2.1'
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/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>0.1.7</string>
18+
<string>0.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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.2.0"
18+
let VERSION = "0.2.1"
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.2.0"
15+
let VERSION = "0.2.1"
1616

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

0 commit comments

Comments
 (0)