From 5eeb814ba88c7899bb4c67f54b1e86082e223c1d Mon Sep 17 00:00:00 2001 From: davidliu Date: Mon, 7 Oct 2024 23:24:18 +0900 Subject: [PATCH] v1.3.0 (#31) Co-authored-by: github-actions[bot] --- .changeset/healthy-books-teach.md | 5 ----- .changeset/lemon-tigers-provide.md | 5 ----- .changeset/nine-boxes-refuse.md | 5 ----- CHANGELOG.md | 12 ++++++++++++ README.md | 4 ++-- gradle.properties | 2 +- package.json | 2 +- 7 files changed, 16 insertions(+), 19 deletions(-) delete mode 100644 .changeset/healthy-books-teach.md delete mode 100644 .changeset/lemon-tigers-provide.md delete mode 100644 .changeset/nine-boxes-refuse.md diff --git a/.changeset/healthy-books-teach.md b/.changeset/healthy-books-teach.md deleted file mode 100644 index 58235dd..0000000 --- a/.changeset/healthy-books-teach.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": minor ---- - -Add AudioBarVisualizer for audio waveform visualizations diff --git a/.changeset/lemon-tigers-provide.md b/.changeset/lemon-tigers-provide.md deleted file mode 100644 index 5254f43..0000000 --- a/.changeset/lemon-tigers-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": patch ---- - -Fix local participant sometimes publishing multiple of local tracks when using RoomScope with audio/video = true diff --git a/.changeset/nine-boxes-refuse.md b/.changeset/nine-boxes-refuse.md deleted file mode 100644 index 810c1a8..0000000 --- a/.changeset/nine-boxes-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": minor ---- - -Add rememberConnectionState and rememberVoiceAssistant diff --git a/CHANGELOG.md b/CHANGELOG.md index d685ea5..67e102c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # components-android +## 1.3.0 + +### Minor Changes + +- Add AudioBarVisualizer for audio waveform visualizations - [#32](https://github.com/livekit/components-android/pull/32) ([@davidliu](https://github.com/davidliu)) + +- Add rememberConnectionState and rememberVoiceAssistant - [#30](https://github.com/livekit/components-android/pull/30) ([@davidliu](https://github.com/davidliu)) + +### Patch Changes + +- Fix local participant sometimes publishing multiple of local tracks when using RoomScope with audio/video = true - [#33](https://github.com/livekit/components-android/pull/33) ([@davidliu](https://github.com/davidliu)) + ## 1.2.0 ### Minor Changes diff --git a/README.md b/README.md index 5c513fe..dd1d206 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ LiveKit Components for Android is available as a Maven package. ... dependencies { // The components package has a different versioning than the main LiveKit SDK. - implementation "io.livekit:livekit-android-compose-components:1.2.0" + implementation "io.livekit:livekit-android-compose-components:1.3.0" // Snapshots of the latest development version are available at: - // implementation "io.livekit:livekit-android-compose-components:1.2.1-SNAPSHOT" + // implementation "io.livekit:livekit-android-compose-components:1.3.1-SNAPSHOT" // Depend on LiveKit SDK separately to keep up to date. implementation "io.livekit:livekit-android:$livekit_version" diff --git a/gradle.properties b/gradle.properties index f121cf0..90dcde5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,7 +26,7 @@ android.nonTransitiveRClass=true ############################################################### GROUP=io.livekit -VERSION_NAME=1.2.1-SNAPSHOT +VERSION_NAME=1.3.0 POM_DESCRIPTION=Compose Components for LiveKit Android SDK diff --git a/package.json b/package.json index dc82b52..4f05702 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "components-android", - "version": "1.2.0", + "version": "1.3.0", "repository": "https://github.com/livekit/components-android.git", "license": "Apache License 2.0", "private": true,