diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cf9a7afa..78bae246 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.2.1" + ".": "8.2.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d822252a..b52a45ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.2.2](https://github.com/googlemaps/android-maps-compose/compare/v8.2.1...v8.2.2) (2026-03-12) + + +### Bug Fixes + +* avoid ComposeNotIdleException when clusterContent is null ([#855](https://github.com/googlemaps/android-maps-compose/issues/855)) ([3b12a24](https://github.com/googlemaps/android-maps-compose/commit/3b12a24dfb67ffdaaeed553af12368e074529ed9)) + ## [8.2.1](https://github.com/googlemaps/android-maps-compose/compare/v8.2.0...v8.2.1) (2026-03-12) diff --git a/README.md b/README.md index 67079cdb..c347e4c6 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ You no longer need to specify the Maps SDK for Android or its Utility Library as ```groovy dependencies { - implementation 'com.google.maps.android:maps-compose:8.2.1' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose:8.2.2' // {x-release-please-version} // Optionally, you can include the Compose utils library for Clustering, // Street View metadata checks, etc. - implementation 'com.google.maps.android:maps-compose-utils:8.2.1' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose-utils:8.2.2' // {x-release-please-version} // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:8.2.1' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose-widgets:8.2.2' // {x-release-please-version} } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 80f12182..a310dae0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,7 +33,7 @@ val projectArtifactId by extra { project: Project -> allprojects { group = "com.google.maps.android" // {x-release-please-start-version} - version = "8.2.1" + version = "8.2.2" // {x-release-please-end} }