diff --git a/.changeset/eleven-mice-fry.md b/.changeset/eleven-mice-fry.md deleted file mode 100644 index 40631ab..0000000 --- a/.changeset/eleven-mice-fry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": patch ---- - -Remove Immutable annotation from TrackReference as the contained objects are not immutable diff --git a/.changeset/eleven-phones-buy.md b/.changeset/eleven-phones-buy.md deleted file mode 100644 index 0d6fd64..0000000 --- a/.changeset/eleven-phones-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": minor ---- - -Change the LocalMedia API to use setEnabled rather than start/stop methods to make clear that they are idempotent. diff --git a/.changeset/real-jars-wait.md b/.changeset/real-jars-wait.md deleted file mode 100644 index 671a6f0..0000000 --- a/.changeset/real-jars-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": patch ---- - -Fix rememberLiveKitRoom disabling audio/video if enabled from outside the composable diff --git a/.changeset/small-ravens-help.md b/.changeset/small-ravens-help.md deleted file mode 100644 index 67ed028..0000000 --- a/.changeset/small-ravens-help.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"components-android": patch ---- - -Fix isDeviceEnabled states not properly updating diff --git a/CHANGELOG.md b/CHANGELOG.md index 505b422..6c39880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # components-android +## 2.1.0 + +### Minor Changes + +- Change the LocalMedia API to use setEnabled rather than start/stop methods to make clear that they are idempotent. - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu)) + +### Patch Changes + +- Remove Immutable annotation from TrackReference as the contained objects are not immutable - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu)) + +- Fix rememberLiveKitRoom disabling audio/video if enabled from outside the composable - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu)) + +- Fix isDeviceEnabled states not properly updating - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu)) + ## 2.0.0 ### Major Changes diff --git a/README.md b/README.md index 0071da9..6452520 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:2.0.0" + implementation "io.livekit:livekit-android-compose-components:2.1.0" // Snapshots of the latest development version are available at: - // implementation "io.livekit:livekit-android-compose-components:2.0.1-SNAPSHOT" + // implementation "io.livekit:livekit-android-compose-components:2.1.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 fecc329..14fdaf8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,7 +26,7 @@ android.nonTransitiveRClass=true ############################################################### GROUP=io.livekit -VERSION_NAME=2.0.0 +VERSION_NAME=2.1.0 POM_DESCRIPTION=Compose Components for LiveKit Android SDK diff --git a/package.json b/package.json index ee8e00c..4079312 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "components-android", - "version": "2.0.0", + "version": "2.1.0", "repository": "https://github.com/livekit/components-android.git", "license": "Apache License 2.0", "private": true,