Skip to content

Commit faa4d4d

Browse files
authored
Updated the ACS Common version used in ACS Chat and prepared a patch release for the latter. (#1531)
1 parent 66d9c71 commit faa4d4d

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ allprojects {
263263
ext {
264264
androidxTestVersion = "1.4.0"
265265
appCompatVersion = "1.2.0"
266-
azureCommunicationCommonVersion = "1.2.0"
266+
azureCommunicationCommonVersion = "1.2.1"
267267
azureCoreVersion = "1.0.0-beta.14"
268268
jacksonVersion = "2.12.7" // Do not upgrade to 2.13.0 and above, as it introduced using an API not available in javax.xml.stream:stax-api:1.0-2. See: https://github.com/Azure/azure-sdk-for-android/issues/1017.
269269
jacksonDatabindVersion = "2.12.7.1" // Need this to be a separate version to include a security fix.

sdk/communication/azure-communication-chat/CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# Release History
2-
## 2.1.0-beta.1 (Unreleased)
3-
4-
### Features Added
5-
6-
### Breaking Changes
7-
8-
### Bugs Fixed
2+
## 2.0.3 (2024-02-27)
93

104
### Other Changes
115
- Updated `targetSdkVersion` and `compileSdkVersion` from `30` to `34`.
126

7+
#### Dependency updates
8+
- Updated `azure-core` dependency to `1.0.0-beta.14`.
9+
- Updated `azure-core-credential` dependency to `1.0.0-beta.14`.
10+
- Updated `azure-core-http` dependency to `1.0.0-beta.14`.
11+
- Updated `azure-core-logging` dependency to `1.0.0-beta.14`.
12+
- Updated `azure-core-rest` dependency to `1.0.0-beta.14`.
13+
- Updated `azure-communication-common` dependency to `1.2.1`.
14+
1315
## 2.0.2 (2024-01-18)
1416

1517
#### Bugs Fixed

sdk/communication/azure-communication-chat/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Azure Communication Chat contains the APIs used in chat applications for Azure C
1515
- A deployed Communication Services resource. You can use the [Azure Portal](https://docs.microsoft.com/azure/communication-services/quickstarts/create-communication-resource?tabs=windows&pivots=platform-azp) or the [Azure PowerShell](https://docs.microsoft.com/powershell/module/az.communication/new-azcommunicationservice) to set it up.
1616

1717
### Versions available
18-
The current version of this library is **2.1.0-beta.1**.
18+
The current version of this library is **2.0.3**.
1919

2020
### Include the package
2121
To install the Azure Communication Chat libraries for Android, add them as dependencies within your
@@ -31,13 +31,13 @@ Add an `implementation` configuration to the `dependencies` block of your app's
3131
// build.gradle
3232
dependencies {
3333
...
34-
implementation "com.azure.android:azure-communication-chat:2.1.0-beta.1"
34+
implementation "com.azure.android:azure-communication-chat:2.0.3"
3535
}
3636
3737
// build.gradle.kts
3838
dependencies {
3939
...
40-
implementation("com.azure.android:azure-communication-chat:2.1.0-beta.1")
40+
implementation("com.azure.android:azure-communication-chat:2.0.3")
4141
}
4242
```
4343

@@ -48,7 +48,7 @@ To import the library into your project using the [Maven](https://maven.apache.o
4848
<dependency>
4949
<groupId>com.azure.android</groupId>
5050
<artifactId>azure-communication-chat</artifactId>
51-
<version>2.1.0-beta.1</version>
51+
<version>2.0.3</version>
5252
</dependency>
5353
```
5454

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.1.0-beta.1
1+
version=2.0.3

0 commit comments

Comments
 (0)