diff --git a/.changeset/breezy-mugs-raise.md b/.changeset/breezy-mugs-raise.md deleted file mode 100644 index d5d583a35..000000000 --- a/.changeset/breezy-mugs-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix potential leak for StreamSender caused by exceptions diff --git a/.changeset/cuddly-moose-try.md b/.changeset/cuddly-moose-try.md deleted file mode 100644 index 892910035..000000000 --- a/.changeset/cuddly-moose-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Update audio handling to use AudioManager communication device APIs on S and above diff --git a/.changeset/eight-numbers-fold.md b/.changeset/eight-numbers-fold.md deleted file mode 100644 index 6e77ff674..000000000 --- a/.changeset/eight-numbers-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Rethrow cancellation exceptions for coroutines diff --git a/.changeset/great-zoos-boil.md b/.changeset/great-zoos-boil.md deleted file mode 100644 index 3eb5eee11..000000000 --- a/.changeset/great-zoos-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Implement changing preferred audio device list on AudioSwitchHandler mid-call diff --git a/.changeset/sharp-bikes-grab.md b/.changeset/sharp-bikes-grab.md deleted file mode 100644 index 3f07836e0..000000000 --- a/.changeset/sharp-bikes-grab.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": minor ---- - -AudioOptions: Added disableAudioPrewarming flag diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c9e9213e..0b4e9d806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # client-sdk-android +## 2.25.0 + +### Minor Changes + +- AudioOptions: Added disableAudioPrewarming flag - [#912](https://github.com/livekit/client-sdk-android/pull/912) ([@davidliu](https://github.com/davidliu)) + +### Patch Changes + +- Fix potential leak for StreamSender caused by exceptions - [#913](https://github.com/livekit/client-sdk-android/pull/913) ([@davidliu](https://github.com/davidliu)) + +- Update audio handling to use AudioManager communication device APIs on S and above - [#910](https://github.com/livekit/client-sdk-android/pull/910) ([@davidliu](https://github.com/davidliu)) + +- Rethrow cancellation exceptions for coroutines - [#913](https://github.com/livekit/client-sdk-android/pull/913) ([@davidliu](https://github.com/davidliu)) + +- Implement changing preferred audio device list on AudioSwitchHandler mid-call - [#910](https://github.com/livekit/client-sdk-android/pull/910) ([@davidliu](https://github.com/davidliu)) + ## 2.24.1 ### Patch Changes diff --git a/README.md b/README.md index f03888068..106e9f818 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package. ```groovy title="build.gradle" ... dependencies { - def livekit_version = "2.24.1" + def livekit_version = "2.25.0" implementation "io.livekit:livekit-android:$livekit_version" @@ -58,7 +58,7 @@ dependencies { implementation "io.livekit:livekit-android-track-processors:$livekit_version" // Snapshots of the latest development version are available at: - // implementation "io.livekit:livekit-android:2.24.2-SNAPSHOT" + // implementation "io.livekit:livekit-android:2.25.1-SNAPSHOT" } ``` diff --git a/gradle.properties b/gradle.properties index 67da82dee..cbdf32ba9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -33,7 +33,7 @@ kapt.use.worker.api=true ############################################################### GROUP=io.livekit -VERSION_NAME=2.24.2-SNAPSHOT +VERSION_NAME=2.25.0 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms diff --git a/package.json b/package.json index eb3faaf3a..721427e5d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client-sdk-android", - "version": "2.24.1", + "version": "2.25.0", "repository": "https://github.com/livekit/client-sdk-android.git", "license": "Apache License 2.0", "private": true,