From 100982e402d76b12dde5ec2513c1f0eb7e32e74a Mon Sep 17 00:00:00 2001 From: Calvin Cestari Date: Fri, 29 Jul 2022 12:06:47 +0200 Subject: [PATCH 1/2] chore: Update version number --- Configuration/Shared/Project-Version.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/Shared/Project-Version.xcconfig b/Configuration/Shared/Project-Version.xcconfig index f45940d6a2..beec2bce5e 100644 --- a/Configuration/Shared/Project-Version.xcconfig +++ b/Configuration/Shared/Project-Version.xcconfig @@ -1 +1 @@ -CURRENT_PROJECT_VERSION = 0.52.0 +CURRENT_PROJECT_VERSION = 0.53.0 From 4f7ac701470b452a91ae41c542ee5a66b7c70b17 Mon Sep 17 00:00:00 2001 From: Calvin Cestari Date: Fri, 29 Jul 2022 12:17:45 +0200 Subject: [PATCH 2/2] chore: Update CHANGELOG --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c0a4513c..da9ed44543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change log +## v0.53.0 +- **Remove all instances of bitcode as not supported in Xcode 14**: Starting with Xcode 14, bitcode is no longer required for watchOS and tvOS applications, and the App Store no longer accepts bitcode submissions from Xcode 14. [#2398](https://github.com/apollographql/apollo-ios/pull/2398) - _Thanks to [@stareque-atlassian](stareque-atlassian) for the contribution!_ + ## v0.52.0 - **Add codegen option for excludes**: There is a new property on the codegen configuration options to allow files matching the pattern to be excluded, in the case they are found in the `includes` path. [#2205](https://github.com/apollographql/apollo-ios/pull/2205) - _Thanks to [@bannzai](https://github.com/bannzai) for the contribution!_ - **Fixed - Using the `graphql_transport_ws` protocol could result in `4400` errors from the server**: The correct protocol message is now being sent to the server to end communication. [#2320](https://github.com/apollographql/apollo-ios/pull/2320)