diff --git a/.changeset/cyan-ways-tie.md b/.changeset/cyan-ways-tie.md deleted file mode 100644 index e63675f2c..000000000 --- a/.changeset/cyan-ways-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix resume not working sometimes after connection loss/gain diff --git a/.changeset/shiny-hornets-shake.md b/.changeset/shiny-hornets-shake.md deleted file mode 100644 index d325a011a..000000000 --- a/.changeset/shiny-hornets-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": minor ---- - -Add setting custom reconnect policy diff --git a/.changeset/strong-readers-matter.md b/.changeset/strong-readers-matter.md deleted file mode 100644 index 3ffb18a5c..000000000 --- a/.changeset/strong-readers-matter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix transcription attributes not converting correctly diff --git a/.changeset/sweet-poems-travel.md b/.changeset/sweet-poems-travel.md deleted file mode 100644 index b6b1078be..000000000 --- a/.changeset/sweet-poems-travel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Specifically keep native libwebrtc methods from being obfuscated diff --git a/.changeset/ten-ants-try.md b/.changeset/ten-ants-try.md deleted file mode 100644 index 7c5e925cb..000000000 --- a/.changeset/ten-ants-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": minor ---- - -Update libwebrtc to m144 diff --git a/.changeset/warm-buttons-switch.md b/.changeset/warm-buttons-switch.md deleted file mode 100644 index 989e2a626..000000000 --- a/.changeset/warm-buttons-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Properly cancel jobs awaiting on DataChannel low buffer instead of completing on dispose diff --git a/.changeset/wise-spoons-occur.md b/.changeset/wise-spoons-occur.md deleted file mode 100644 index 8b68397f4..000000000 --- a/.changeset/wise-spoons-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix exception not being caught when using LocalParticipant.publishData diff --git a/CHANGELOG.md b/CHANGELOG.md index 8642a0d19..c8f7df30b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # client-sdk-android +## 2.24.0 + +### Minor Changes + +- Add setting custom reconnect policy - [#894](https://github.com/livekit/client-sdk-android/pull/894) ([@davidliu](https://github.com/davidliu)) + +- Update libwebrtc to m144 - [#886](https://github.com/livekit/client-sdk-android/pull/886) ([@davidliu](https://github.com/davidliu)) + +### Patch Changes + +- Fix resume not working sometimes after connection loss/gain - [#894](https://github.com/livekit/client-sdk-android/pull/894) ([@davidliu](https://github.com/davidliu)) + +- Fix transcription attributes not converting correctly - [#889](https://github.com/livekit/client-sdk-android/pull/889) ([@davidliu](https://github.com/davidliu)) + +- Specifically keep native libwebrtc methods from being obfuscated - [#893](https://github.com/livekit/client-sdk-android/pull/893) ([@davidliu](https://github.com/davidliu)) + +- Properly cancel jobs awaiting on DataChannel low buffer instead of completing on dispose - [#897](https://github.com/livekit/client-sdk-android/pull/897) ([@davidliu](https://github.com/davidliu)) + +- Fix exception not being caught when using LocalParticipant.publishData - [#897](https://github.com/livekit/client-sdk-android/pull/897) ([@davidliu](https://github.com/davidliu)) + ## 2.23.5 ### Patch Changes diff --git a/README.md b/README.md index 88f739e29..cdcb12389 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.23.5" + def livekit_version = "2.24.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.23.6-SNAPSHOT" + // implementation "io.livekit:livekit-android:2.24.1-SNAPSHOT" } ``` diff --git a/gradle.properties b/gradle.properties index 2c6a0db23..a4ab944dd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -24,7 +24,7 @@ org.gradle.caching=true ############################################################### GROUP=io.livekit -VERSION_NAME=2.23.6-SNAPSHOT +VERSION_NAME=2.24.0 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms diff --git a/package.json b/package.json index 2bab9f501..57ee26e75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client-sdk-android", - "version": "2.23.5", + "version": "2.24.0", "repository": "https://github.com/livekit/client-sdk-android.git", "license": "Apache License 2.0", "private": true,