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