Skip to content

Commit

Permalink
Updated the ACS Common version used in ACS Chat and prepared a patch …
Browse files Browse the repository at this point in the history
…release for the latter. (#1531)
  • Loading branch information
vcolin7 authored Feb 28, 2024
1 parent 66d9c71 commit faa4d4d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ allprojects {
ext {
androidxTestVersion = "1.4.0"
appCompatVersion = "1.2.0"
azureCommunicationCommonVersion = "1.2.0"
azureCommunicationCommonVersion = "1.2.1"
azureCoreVersion = "1.0.0-beta.14"
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.
jacksonDatabindVersion = "2.12.7.1" // Need this to be a separate version to include a security fix.
Expand Down
16 changes: 9 additions & 7 deletions sdk/communication/azure-communication-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Release History
## 2.1.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 2.0.3 (2024-02-27)

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

#### Dependency updates
- Updated `azure-core` dependency to `1.0.0-beta.14`.
- Updated `azure-core-credential` dependency to `1.0.0-beta.14`.
- Updated `azure-core-http` dependency to `1.0.0-beta.14`.
- Updated `azure-core-logging` dependency to `1.0.0-beta.14`.
- Updated `azure-core-rest` dependency to `1.0.0-beta.14`.
- Updated `azure-communication-common` dependency to `1.2.1`.

## 2.0.2 (2024-01-18)

#### Bugs Fixed
Expand Down
8 changes: 4 additions & 4 deletions sdk/communication/azure-communication-chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Azure Communication Chat contains the APIs used in chat applications for Azure C
- 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.

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

### Include the package
To install the Azure Communication Chat libraries for Android, add them as dependencies within your
Expand All @@ -31,13 +31,13 @@ Add an `implementation` configuration to the `dependencies` block of your app's
// build.gradle
dependencies {
...
implementation "com.azure.android:azure-communication-chat:2.1.0-beta.1"
implementation "com.azure.android:azure-communication-chat:2.0.3"
}
// build.gradle.kts
dependencies {
...
implementation("com.azure.android:azure-communication-chat:2.1.0-beta.1")
implementation("com.azure.android:azure-communication-chat:2.0.3")
}
```

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.1.0-beta.1
version=2.0.3

0 comments on commit faa4d4d

Please sign in to comment.