diff --git a/README.md b/README.md
index c3cffd4c1..6f01c97a4 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,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.13), 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.14), 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 38f2e9f50..ccbfbc02e 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.13";
+NSString *const ARTDefault_libraryVersion = @"1.0.14";
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 f8565d8be..c2f11aed0 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.0.13
+ 1.0.14
CFBundleSignature
????
CFBundleVersion
diff --git a/Spec/RealtimeClientConnection.swift b/Spec/RealtimeClientConnection.swift
index c6884f26f..c752eb322 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.13"))
+ expect(query).to(haveParam("lib", withValue: "ios-1.0.14"))
}
else {
XCTFail("MockTransport isn't working")
diff --git a/Version.xcconfig b/Version.xcconfig
index 292e2310d..7e099ceb7 100644
--- a/Version.xcconfig
+++ b/Version.xcconfig
@@ -1 +1 @@
-CURRENT_PROJECT_VERSION = 1.0.13
+CURRENT_PROJECT_VERSION = 1.0.14