Skip to content

Commit

Permalink
Bump version to 0.8.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
tcard committed Apr 19, 2017
1 parent bada06b commit bcfd4f1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Ably.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Ably"
s.version = "0.8.12"
s.version = "0.8.13"
s.summary = "iOS client for Ably"
s.description = <<-DESC
iOS client library for ably.io, the realtime messaging service, written in Objective-C and ready for Swift 2.0.
Expand Down
2 changes: 1 addition & 1 deletion Examples/Tests/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Ably (0.8.12):
- Ably (0.8.13):
- msgpack (= 0.1.8)
- SocketRocket (= 0.5.1)
- msgpack (0.1.8)
Expand Down
2 changes: 1 addition & 1 deletion Source/ARTDefault.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ @implementation ARTDefault
NSString *const ARTDefault_restHost = @"rest.ably.io";
NSString *const ARTDefault_realtimeHost = @"realtime.ably.io";
NSString *const ARTDefault_version = @"0.8";
NSString *const ARTDefault_libraryVersion = @"0.8.12";
NSString *const ARTDefault_libraryVersion = @"0.8.13";
NSString *const ARTDefault_platform = @"ios-";

static NSTimeInterval _realtimeRequestTimeout = 10.0;
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>0.8.12</string>
<string>0.8.13</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Spec/RealtimeClientConnection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class RealtimeClientConnection: QuickSpec {
done()
case .Connected:
if let transport = client.transport as? TestProxyTransport, let query = transport.lastUrl?.query {
expect(query).to(haveParam("lib", withValue: "ios-0.8.12"))
expect(query).to(haveParam("lib", withValue: "ios-0.8.13"))
}
else {
XCTFail("MockTransport isn't working")
Expand Down

0 comments on commit bcfd4f1

Please sign in to comment.