diff --git a/jazzy/AzureCommunicationChat.yml b/jazzy/AzureCommunicationChat.yml index d04caa5b4..35192a0e3 100644 --- a/jazzy/AzureCommunicationChat.yml +++ b/jazzy/AzureCommunicationChat.yml @@ -2,7 +2,7 @@ author: Microsoft author_url: https://azure.github.io/azure-sdk/ github_url: https://github.com/Azure/azure-sdk-for-ios module: AzureCommunicationChat -module_version: 1.3.2 +module_version: 1.3.3 readme: ../sdk/communication/AzureCommunicationChat/README.md skip_undocumented: false hide_unlisted_documentation: false diff --git a/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json b/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json index 65e682567..5707f2ab8 100644 --- a/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json +++ b/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json @@ -1,6 +1,6 @@ { "name": "AzureCommunicationChat", - "version": "1.3.2", + "version": "1.3.3", "summary": "Azure Communication Chat Service client library for iOS", "description": "This package contains the Chat client library for Azure Communication\nServices.", "homepage": "https://github.com/Azure/azure-sdk-for-ios/tree/main/sdk/communication/AzureCommunicationChat", @@ -18,7 +18,7 @@ "swift_versions": "5.0", "source": { "git": "https://github.com/Azure/azure-sdk-for-ios.git", - "tag": "AzureCommunicationChat_1.3.2" + "tag": "AzureCommunicationChat_1.3.3" }, "source_files": "sdk/communication/AzureCommunicationChat/Source/**/*.{swift,h,m}", "pod_target_xcconfig": { diff --git a/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.xcodeproj/project.pbxproj b/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.xcodeproj/project.pbxproj index 7206747ac..f0e114ef2 100644 --- a/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.xcodeproj/project.pbxproj +++ b/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.xcodeproj/project.pbxproj @@ -1398,7 +1398,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.3.2; + MARKETING_VERSION = 1.3.3; NEW_SETTING = ""; PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; @@ -1433,7 +1433,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.3.2; + MARKETING_VERSION = 1.3.3; NEW_SETTING = ""; PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; diff --git a/sdk/communication/AzureCommunicationChat/CHANGELOG.md b/sdk/communication/AzureCommunicationChat/CHANGELOG.md index 4c2126b76..47c97b7d8 100644 --- a/sdk/communication/AzureCommunicationChat/CHANGELOG.md +++ b/sdk/communication/AzureCommunicationChat/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## 1.3.3 (2023-10-11) +### Bugs Fixed +- Reverted reference to .cloudEnvironment enum that's only available in AzureCommunicationCommon version 1.2.0-beta.1 onwards. This resolves the issue in releasing AzureCommunicationChat version 1.3.2 + ## 1.3.2 (2023-10-04) ### Feature Added - Added support for [EU Data Boundary(EUDB)](https://blogs.microsoft.com/eupolicy/2021/12/16/eu-data-boundary-for-the-microsoft-cloud-a-progress-report) diff --git a/sdk/communication/AzureCommunicationChat/README.md b/sdk/communication/AzureCommunicationChat/README.md index a32f2b68c..d1cae05cb 100644 --- a/sdk/communication/AzureCommunicationChat/README.md +++ b/sdk/communication/AzureCommunicationChat/README.md @@ -56,7 +56,7 @@ specifying the clone URL of this repository and the version specifier you wish t // swift-tools-version:5.3 dependencies: [ ... - .package(name: "AzureCommunicationChat", url: "https://github.com/Azure/SwiftPM-AzureCommunicationChat.git", from: "1.3.2") + .package(name: "AzureCommunicationChat", url: "https://github.com/Azure/SwiftPM-AzureCommunicationChat.git", from: "1.3.3") ], ``` @@ -94,7 +94,7 @@ platform :ios, '13.0' use_frameworks! target 'MyTarget' do - pod 'AzureCommunicationChat', '1.3.2' + pod 'AzureCommunicationChat', '1.3.3' ... end ```