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

Azure communication chat 1.3.0 Release #1345

Merged
merged 1 commit into from
Sep 13, 2022
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
2 changes: 1 addition & 1 deletion jazzy/AzureCommunicationChat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0-beta.1
module_version: 1.3.0
readme: ../sdk/communication/AzureCommunicationChat/README.md
skip_undocumented: false
hide_unlisted_documentation: false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AzureCommunicationChat",
"version": "1.3.0-beta.1",
"version": "1.3.0",
"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",
Expand All @@ -18,7 +18,7 @@
"swift_versions": "5.0",
"source": {
"git": "https://github.com/Azure/azure-sdk-for-ios.git",
"tag": "AzureCommunicationChat_1.3.0-beta.1"
"tag": "AzureCommunicationChat_1.3.0"
},
"source_files": "sdk/communication/AzureCommunicationChat/Source/**/*.{swift,h,m}",
"pod_target_xcconfig": {
Expand All @@ -40,4 +40,4 @@
]
},
"swift_version": "5.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.3.0-beta.1";
MARKETING_VERSION = "1.3.0";
NEW_SETTING = "";
PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -1432,7 +1432,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.3.0-beta.1";
MARKETING_VERSION = "1.3.0";
NEW_SETTING = "";
PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down
4 changes: 2 additions & 2 deletions sdk/communication/AzureCommunicationChat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0-beta.1")
.package(name: "AzureCommunicationChat", url: "https://github.com/Azure/SwiftPM-AzureCommunicationChat.git", from: "1.3.0")
],
```

Expand Down Expand Up @@ -94,7 +94,7 @@ platform :ios, '13.0'
use_frameworks!

target 'MyTarget' do
pod 'AzureCommunicationChat', '1.3.0-beta.1'
pod 'AzureCommunicationChat', '1.3.0'
...
end
```
Expand Down