From d918703055171cd69185c2fe1b2c756fb125867d Mon Sep 17 00:00:00 2001 From: Cesare Rocchi Date: Wed, 31 Jan 2018 15:45:30 +0100 Subject: [PATCH] Bump version to 1.0.11. --- README.md | 2 +- Source/ARTDefault.m | 2 +- Source/Info.plist | 2 +- Spec/RealtimeClientConnection.swift | 2 +- Version.xcconfig | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 770ed1758..831dab306 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ If you see, for example, a `dyld: Library not loaded: @rpath/SocketRocket.framew ### Manual installation -1. Get the code from GitHub [from the release page](https://github.com/ably/ably-ios/releases/tag/1.0.10), or clone it to get the latest, unstable and possibly underdocumented version: `git clone git@github.com:ably/ably-ios.git` +1. Get the code from GitHub [from the release page](https://github.com/ably/ably-ios/releases/tag/1.0.11), or clone it to get the latest, unstable and possibly underdocumented version: `git clone git@github.com:ably/ably-ios.git` 2. Drag the directory `ably-ios/ably-ios` into your project as a group. 3. Ably depends on [SocketRocket](https://github.com/facebook/SocketRocket) 0.5.1; get it [from the releases page](https://github.com/facebook/SocketRocket/releases/tag/0.5.1) and follow [its manual installation instructions](https://github.com/facebook/SocketRocket#installing-ios). 4. Ably also depends on [msgpack](https://github.com/rvi/msgpack-objective-C) 0.1.8; get it [from the releases page](https://github.com/rvi/msgpack-objective-C/releases/tag/0.1.8) and link it into your project. diff --git a/Source/ARTDefault.m b/Source/ARTDefault.m index 0c4709cae..5b7adfd5c 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 = @"1.0"; -NSString *const ARTDefault_libraryVersion = @"1.0.10"; +NSString *const ARTDefault_libraryVersion = @"1.0.11"; NSString *const ARTDefault_ablyBundleId = @"io.ably.Ably"; NSString *const ARTDefault_bundleVersionKey = @"CFBundleShortVersionString"; NSString *const ARTDefault_platform = @"ios-"; diff --git a/Source/Info.plist b/Source/Info.plist index ecbba1ec6..6309df31f 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.10 + 1.0.11 CFBundleSignature ???? CFBundleVersion diff --git a/Spec/RealtimeClientConnection.swift b/Spec/RealtimeClientConnection.swift index 571300b12..06e6e2099 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-1.0.10")) + expect(query).to(haveParam("lib", withValue: "ios-1.0.11")) } else { XCTFail("MockTransport isn't working") diff --git a/Version.xcconfig b/Version.xcconfig index 0f6aa6b3d..5d9adc374 100644 --- a/Version.xcconfig +++ b/Version.xcconfig @@ -1 +1 @@ -CURRENT_PROJECT_VERSION = 1.0.10 +CURRENT_PROJECT_VERSION = 1.0.11