Skip to content

Commit a8e6e2a

Browse files
Merge pull request #2180 from ably/release/1.2.56
Release version 1.2.56
2 parents 388c0b6 + 7c6f5ab commit a8e6e2a

File tree

14 files changed

+38
-23
lines changed

14 files changed

+38
-23
lines changed

.github/workflows/examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
pod repo update
4545
pod install
46-
bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_iOS18_4"
46+
bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_iOS26_2"
4747
4848
- name: Carthage Installation
4949
working-directory: ./Examples/AblyCarthage

.github/workflows/integration-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
include:
2222

2323
- platform: iOS
24-
lane: test_iOS18_4
24+
lane: test_iOS26_2
2525

2626
- platform: tvOS
27-
lane: test_tvOS18_4
27+
lane: test_tvOS26_2
2828

2929
- platform: macOS
3030
lane: test_macOS

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Change Log
22

3-
## [1.2.55]((https://github.com/ably/ably-cocoa/tree/1.2.55)
3+
## [1.2.56](https://github.com/ably/ably-cocoa/tree/1.2.56)
4+
5+
## What's Changed
6+
7+
This release introduces the ability to:
8+
9+
- update an existing message (either by replacing its data or appending to its data)
10+
- delete a message
11+
- retrieve the latest version of a message
12+
- retrieve all historical versions of a message
13+
14+
For more information, see the [documentation on updating and deleting messages](https://ably.com/docs/messages/updates-deletes).
15+
16+
**Full Changelog**: https://github.com/ably/ably-cocoa/compare/1.2.55...1.2.56
17+
18+
## [1.2.55](https://github.com/ably/ably-cocoa/tree/1.2.55)
419

520
This release contains no user-facing changes; it corrects a mistake in the internal version data that version 1.2.54 submits to Ably.
621

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ submodules:
6565

6666
## -- Testing --
6767

68-
## [Tests] Run tests on iOS 18.4 using sandbox environment
68+
## [Tests] Run tests on iOS 26.2 using sandbox environment
6969
test_iOS:
70-
ABLY_ENV="sandbox" NAME="ably-iOS" bundle exec fastlane test_iOS18_4
70+
ABLY_ENV="sandbox" NAME="ably-iOS" bundle exec fastlane test_iOS26_2
7171

72-
## [Tests] Run tests on tvOS 18.4 using sandbox environment
72+
## [Tests] Run tests on tvOS 26.2 using sandbox environment
7373
test_tvOS:
74-
ABLY_ENV="sandbox" NAME="ably-tvOS" bundle exec fastlane test_tvOS18_4
74+
ABLY_ENV="sandbox" NAME="ably-tvOS" bundle exec fastlane test_tvOS26_2
7575

7676
## [Tests] Run tests on macOS using sandbox environment
7777
test_macOS:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ To install the `ably-cocoa` package in your Xcode project:
6060
To install the `ably-cocoa` package in another Swift package, add the following to your `Package.Swift`:
6161

6262
```swift
63-
.package(url: "https://github.com/ably/ably-cocoa", from: "1.2.55"),
63+
.package(url: "https://github.com/ably/ably-cocoa", from: "1.2.56"),
6464
```
6565

6666
See Apple's [adding package dependencies to your app](https://developer.apple.com/documentation/swift_packages/adding_package_dependencies_to_your_app) guide for more detail.

Scripts/jazzy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ bundle exec jazzy \
66
--objc \
77
--clean \
88
--author Ably \
9-
--module-version 1.2.55 \
9+
--module-version 1.2.56 \
1010
--umbrella-header Source/include/Ably/AblyPublic.h \
1111
--framework-root Source \
1212
--module Ably \

Source/ARTClientInformation.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#import <sys/utsname.h>
77

88
NSString *const ARTClientInformationAgentNotVersioned = @"ARTClientInformationAgentNotVersioned";
9-
NSString *const ARTClientInformation_libraryVersion = @"1.2.55";
9+
NSString *const ARTClientInformation_libraryVersion = @"1.2.56";
1010
static NSString *const _libraryName = @"ably-cocoa";
1111

1212
// NSOperatingSystemVersion has NSInteger as version components for some reason, so mitigate it here.

Test/AblyTests/Tests/ARTDefaultTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ class ARTDefaultTests: XCTestCase {
66

77
func testVersions() {
88
XCTAssertEqual(ARTDefault.apiVersion(), "5")
9-
XCTAssertEqual(ARTDefault.libraryVersion(), "1.2.55")
9+
XCTAssertEqual(ARTDefault.libraryVersion(), "1.2.56")
1010
}
1111
}

Test/AblyTests/Tests/ClientInformationTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ final class ClientInformationTests: XCTestCase {
99

1010
XCTAssertEqual(agents.keys.count, 2)
1111

12-
XCTAssertEqual(agents["ably-cocoa"], "1.2.55")
12+
XCTAssertEqual(agents["ably-cocoa"], "1.2.56")
1313

1414
#if os(iOS)
1515
XCTAssertTrue(agents.keys.contains("iOS"))
@@ -27,7 +27,7 @@ final class ClientInformationTests: XCTestCase {
2727
// CR3, CR3b
2828
func testAgentIdentifierWithAdditionalAgents_withNilAdditionalAgents() {
2929
let expectedIdentifier = [
30-
"ably-cocoa/1.2.55",
30+
"ably-cocoa/1.2.56",
3131
ARTDefault.platformAgent()
3232
].sorted().joined(separator: " ")
3333

@@ -42,7 +42,7 @@ final class ClientInformationTests: XCTestCase {
4242
]
4343

4444
let expectedIdentifier = [
45-
"ably-cocoa/1.2.55",
45+
"ably-cocoa/1.2.56",
4646
"demolib/0.0.1",
4747
"morelib",
4848
ARTDefault.platformAgent()

Test/AblyTests/Tests/RealtimeClientConnectionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class RealtimeClientConnectionTests: XCTestCase {
372372
done()
373373
case .connected:
374374
if let transport = client.internal.transport as? TestProxyTransport, let query = transport.lastUrl?.query {
375-
expect(query).to(haveParam("agent", hasPrefix: "ably-cocoa/1.2.55"))
375+
expect(query).to(haveParam("agent", hasPrefix: "ably-cocoa/1.2.56"))
376376
} else {
377377
XCTFail("MockTransport isn't working")
378378
}

0 commit comments

Comments
 (0)