From b2611550008e596be407820e92e200fb538da155 Mon Sep 17 00:00:00 2001 From: Lawrence Forooghian Date: Thu, 16 Jan 2025 14:15:20 -0300 Subject: [PATCH] Temporarily lock ably-cocoa version --- Package.swift | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 932c848..499bf38 100644 --- a/Package.swift +++ b/Package.swift @@ -20,7 +20,12 @@ let package = Package( dependencies: [ .package( url: "https://github.com/ably/ably-cocoa", - from: "1.2.36" + /* + The upcoming ably-cocoa 1.2.37 will revert a change on which the Chat SDK depends. It will not be possible to make a single version of the Chat SDK work with ably-cocoa versions 1.2.36 and 1.2.37. + + So, in order to make sure that the Chat SDK continues to work once ably-cocoa 1.2.37 is released, let's temporarily lock the ably-cocoa dependency to 1.2.36, and release a new version of the Chat SDK. Then, once ably-cocoa 1.2.37 is released, we can release another version of the Chat SDK that requires 1.2.37 and above. + */ + exact: "1.2.36" ), .package( url: "https://github.com/apple/swift-argument-parser",