diff --git a/.gemini/skills/android-maps-compose/SKILL.md b/.gemini/skills/android-maps-compose/SKILL.md index d7096a68..020dc4db 100644 --- a/.gemini/skills/android-maps-compose/SKILL.md +++ b/.gemini/skills/android-maps-compose/SKILL.md @@ -15,13 +15,13 @@ Verify the latest versions if possible, but use these as a baseline: ```kotlin dependencies { // Google Maps Compose library - implementation("com.google.maps.android:maps-compose:8.4.0") // x-release-please-version + implementation("com.google.maps.android:maps-compose:8.4.1") // x-release-please-version // Optional: Maps Compose Utilities (for clustering, etc.) - // implementation("com.google.maps.android:maps-compose-utils:8.4.0") // x-release-please-version + // implementation("com.google.maps.android:maps-compose-utils:8.4.1") // x-release-please-version // Optional: Maps Compose Widgets (for UI components) - // implementation("com.google.maps.android:maps-compose-widgets:8.4.0") // x-release-please-version + // implementation("com.google.maps.android:maps-compose-widgets:8.4.1") // x-release-please-version } ``` diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3f8f1831..7631b6fc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.4.0" + ".": "8.4.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 76c256b9..1636c9c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [8.4.1](https://github.com/googlemaps/android-maps-compose/compare/v8.4.0...v8.4.1) (2026-08-06) + + +### Bug Fixes + +* avoid re-parenting crash for MarkerInfoWindowContent/MarkerInfoWindowComposable ([#953](https://github.com/googlemaps/android-maps-compose/issues/953)) ([12f35a4](https://github.com/googlemaps/android-maps-compose/commit/12f35a4af2090265042c0bbab12084ce5c114f39)) +* rename InvalidatingComposeView getRotation param to avoid View shadowing ([#952](https://github.com/googlemaps/android-maps-compose/issues/952)) ([1d971cd](https://github.com/googlemaps/android-maps-compose/commit/1d971cd14fb7f708d246ae2b17836950538f1e56)) + ## [8.4.0](https://github.com/googlemaps/android-maps-compose/compare/v8.3.1...v8.4.0) (2026-07-16) diff --git a/README.md b/README.md index 75f7f8ed..d8fbbb7a 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.4.0' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose:8.4.1' // {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.4.0' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose-utils:8.4.1' // {x-release-please-version} // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:8.4.0' // {x-release-please-version} + implementation 'com.google.maps.android:maps-compose-widgets:8.4.1' // {x-release-please-version} } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 8cf92c3d..be50fa8e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,7 +49,7 @@ val projectArtifactId by extra { project: Project -> allprojects { group = "com.google.maps.android" // {x-release-please-start-version} - version = "8.4.0" + version = "8.4.1" // {x-release-please-end} } diff --git a/llm-integration-prompt.md b/llm-integration-prompt.md index d4031b68..1dcb2914 100644 --- a/llm-integration-prompt.md +++ b/llm-integration-prompt.md @@ -14,7 +14,7 @@ Add the following to your `gradle/libs.versions.toml` file: ```toml [versions] -mapsCompose = "8.4.0" # x-release-please-version +mapsCompose = "8.4.1" # x-release-please-version [libraries] maps-compose = { group = "com.google.maps.android", name = "maps-compose", version.ref = "mapsCompose" } @@ -44,13 +44,13 @@ If you are not using version catalogs, add the dependencies directly to your app ```kotlin dependencies { // Google Maps Compose library - implementation("com.google.maps.android:maps-compose:8.4.0") // x-release-please-version + implementation("com.google.maps.android:maps-compose:8.4.1") // x-release-please-version // Optional: Maps Compose Utilities (for clustering, etc.) - // implementation("com.google.maps.android:maps-compose-utils:8.4.0") // x-release-please-version + // implementation("com.google.maps.android:maps-compose-utils:8.4.1") // x-release-please-version // Optional: Maps Compose Widgets (for UI components) - // implementation("com.google.maps.android:maps-compose-widgets:8.4.0") // x-release-please-version + // implementation("com.google.maps.android:maps-compose-widgets:8.4.1") // x-release-please-version } ```