diff --git a/Ably.podspec b/Ably.podspec index 0cf1571ef..c4d25b775 100644 --- a/Ably.podspec +++ b/Ably.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Ably" - s.version = "0.8.10" + s.version = "0.8.11" 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. diff --git a/Examples/Tests/Podfile.lock b/Examples/Tests/Podfile.lock index e2b81b3a6..23cfa41b0 100644 --- a/Examples/Tests/Podfile.lock +++ b/Examples/Tests/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - Ably (0.8.10): + - Ably (0.8.11): - msgpack (= 0.1.8) - SocketRocket (= 0.5.1) - msgpack (0.1.8) diff --git a/Source/ARTDefault.m b/Source/ARTDefault.m index ce7783de5..1f9ca2efb 100644 --- a/Source/ARTDefault.m +++ b/Source/ARTDefault.m @@ -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.10"; +NSString *const ARTDefault_libraryVersion = @"0.8.11"; NSString *const ARTDefault_platform = @"ios-"; static NSTimeInterval _realtimeRequestTimeout = 10.0; diff --git a/Source/Info.plist b/Source/Info.plist index bb86c85b2..9f815e7a9 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.8.10 + 0.8.11 CFBundleSignature ???? CFBundleVersion diff --git a/Spec/RealtimeClientConnection.swift b/Spec/RealtimeClientConnection.swift index 1f18c7f09..9c9672cce 100644 --- a/Spec/RealtimeClientConnection.swift +++ b/Spec/RealtimeClientConnection.swift @@ -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.10")) + expect(query).to(haveParam("lib", withValue: "ios-0.8.11")) } else { XCTFail("MockTransport isn't working")