Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.1.10 #884

Merged
merged 3 commits into from
Jul 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [1.1.10](https://github.com/ably/ably-cocoa/tree/1.1.10) (2019-07-29)
[Full Changelog](https://github.com/ably/ably-cocoa/compare/1.1.9...1.1.10)

**Fixed bugs:**

- Push device registration omits `clientId` [\#877](https://github.com/ably/ably-cocoa/issues/877)

**Merged pull requests:**

- Update `LocalDevice.clientId` [\#874](https://github.com/ably/ably-cocoa/pull/874) ([ricardopereira](https://github.com/ricardopereira))

## [1.1.9](https://github.com/ably/ably-cocoa/tree/1.1.9) (2019-07-12)
[Full Changelog](https://github.com/ably/ably-cocoa/compare/1.1.8...1.1.9)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ If you find any issues with unsupported platform versions, please [raise an issu

#### Acknowledgments

As of version `1.1.9` this library based on the 1.1 library specification. It implements a subset of 1.1 features:
As of version `1.1.10` this library based on the 1.1 library specification. It implements a subset of 1.1 features:
- updated push API and push device authentication;
- support for enforcement of the `maxMessageSize` attribute

Other minor features and bugfixes are included, as listed in the [changelog](CHANGELOG.md#119-2019-07-12).
Other minor features and bugfixes are included, as listed in the [changelog](CHANGELOG.md#1110-2019-07-29).

##### macOS & tvOS

Expand Down Expand Up @@ -130,7 +130,7 @@ If you see, for example, a `dyld: Library not loaded: @rpath/SocketRocketAblyFor

### Manual installation

1. Get the code from GitHub [from the release page](https://github.com/ably/ably-ios/releases/tag/1.1.9), or clone it to get the latest, unstable and possibly underdocumented version: `git clone [email protected]:ably/ably-ios.git`
1. Get the code from GitHub [from the release page](https://github.com/ably/ably-ios/releases/tag/1.1.10), or clone it to get the latest, unstable and possibly underdocumented version: `git clone [email protected]:ably/ably-ios.git`
2. Drag the directory `ably-ios/ably-ios` into your project as a group.
3. Ably depends on our [SocketRocket Fork](https://github.com/ably-forks/SocketRocket) 0.5.2; get it [from the releases page](https://github.com/ably-forks/SocketRocket/releases/tag/0.5.2-ably-2) and follow [its manual installation instructions](https://github.com/ably-forks/SocketRocket/#installing).
4. Ably also depends on our [MessagePack Fork](https://github.com/ably-forks/msgpack-objective-C) 0.2.0; get it [from the releases page](https://github.com/ably-forks/msgpack-objective-C/releases/tag/0.2.0-ably-1) and link it into your project.
Expand Down
2 changes: 1 addition & 1 deletion Spec/RealtimeClientConnection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,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.1.9"))
expect(query).to(haveParam("lib", withValue: "ios-1.1.10"))
}
else {
XCTFail("MockTransport isn't working")
Expand Down
2 changes: 1 addition & 1 deletion Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 1.1.9
CURRENT_PROJECT_VERSION = 1.1.10