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

Release AzureCommunicationChat 1.1.0 #1206

Merged
merged 9 commits into from
Apr 11, 2022
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import UIKit
import AzureCore
import AzureCommunicationCommon
import AzureCommunicationCalling
//import AzureCommunicationChat
import AzureCommunicationChat

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
Expand Down
4 changes: 2 additions & 2 deletions examples/AzureSDKSmokeTest/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ target 'AzureSDKSmokeTest' do
# install podspecs locally from source branch/PR
pod 'AzureCore', :podspec => "#{local_path}/sdk/core/AzureCore/AzureCore.podspec.json"
pod 'AzureCommunicationCommon', :podspec => "#{local_path}/sdk/communication/AzureCommunicationCommon/AzureCommunicationCommon.podspec.json"
# pod 'AzureCommunicationChat', :podspec => "#{local_path}/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json"
pod 'AzureCommunicationChat', :podspec => "#{local_path}/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json"
pod 'AzureCommunicationCalling', :podspec => "#{local_path}/sdk/communication/AzureCommunicationCalling/AzureCommunicationCalling.podspec.json"
else
# manual run targets AzureSDK branch
pod 'AzureCore', :podspec => "https://raw.githubusercontent.com/Azure/azure-sdk-for-ios/#{branch}/sdk/core/AzureCore/AzureCore.podspec.json"
pod 'AzureCommunicationCommon', :podspec => "https://raw.githubusercontent.com/Azure/azure-sdk-for-ios/#{branch}/sdk/communication/AzureCommunicationCommon/AzureCommunicationCommon.podspec.json"
# pod 'AzureCommunicationChat', :podspec => "https://raw.githubusercontent.com/Azure/azure-sdk-for-ios/#{branch}/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json"
pod 'AzureCommunicationChat', :podspec => "https://raw.githubusercontent.com/Azure/azure-sdk-for-ios/#{branch}/sdk/communication/AzureCommunicationChat/AzureCommunicationChat.podspec.json"
pod 'AzureCommunicationCalling', :podspec => "https://raw.githubusercontent.com/Azure/azure-sdk-for-ios/#{branch}/sdk/communication/AzureCommunicationCalling/AzureCommunicationCalling.podspec.json"
end
end
Expand Down
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.1.0-beta.2
module_version: 1.1.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.1.0-beta.2",
"version": "1.1.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.1.0-beta.2"
"tag": "AzureCommunicationChat_1.1.0"
},
"source_files": "sdk/communication/AzureCommunicationChat/Source/**/*.{swift,h,m}",
"pod_target_xcconfig": {
Expand All @@ -30,10 +30,10 @@
},
"dependencies": {
"AzureCore": [
"1.0.0-beta.14"
"1.0.0-beta.15"
],
"AzureCommunicationCommon": [
"~> 1.0.2"
"~> 1.0.3"
],
"Trouter": [
"0.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.1.0-beta.2";
MARKETING_VERSION = "1.1.0";
NEW_SETTING = "";
PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -1154,7 +1154,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.1.0-beta.2";
MARKETING_VERSION = "1.1.0";
NEW_SETTING = "";
PRODUCT_BUNDLE_IDENTIFIER = com.azure.communication.AzureCommunicationChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down
2 changes: 1 addition & 1 deletion sdk/communication/AzureCommunicationChat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.1.0 (Unreleased)
## 1.1.0 (2022-02-22)
Updated service API version to 2021-09-07.

## 1.1.0-beta.2 (2021-09-30)
Expand Down
4 changes: 2 additions & 2 deletions sdk/communication/AzureCommunicationChat/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ let package = Package(
.library(name: "AzureCommunicationChat", targets: ["AzureCommunicationChat"])
],
dependencies: [
.package(name: "AzureCore", url: "https://github.com/Azure/SwiftPM-AzureCore.git", .exact("1.0.0-beta.14")),
.package(name: "AzureCore", url: "https://github.com/Azure/SwiftPM-AzureCore.git", .exact("1.0.0-beta.15")),
.package(
name: "AzureCommunicationCommon",
url: "https://github.com/Azure/SwiftPM-AzureCommunicationCommon.git",
from: "1.0.2"
from: "1.0.3"
),
.package(url: "https://github.com/AliSoftware/OHHTTPStubs.git", from: "9.1.0"),
.package(
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.1.0-beta.2")
.package(name: "AzureCommunicationChat", url: "https://github.com/Azure/SwiftPM-AzureCommunicationChat.git", from: "1.1.0")
],
```

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

target 'MyTarget' do
pod 'AzureCommunicationChat', '1.1.0-beta.2'
pod 'AzureCommunicationChat', '1.1.0'
...
end
```
Expand Down