diff --git a/.gemini/skills/android-maps-utils/SKILL.md b/.gemini/skills/android-maps-utils/SKILL.md index 948bb49ca..08d9d03e2 100644 --- a/.gemini/skills/android-maps-utils/SKILL.md +++ b/.gemini/skills/android-maps-utils/SKILL.md @@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file: ```kotlin dependencies { // Google Maps Utility Library - implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version } ``` diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 86753ed0a..2f09229bf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.1.0" + ".": "5.1.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ef4834cc..94fc3f42f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.1.1](https://github.com/googlemaps/android-maps-utils/compare/v5.1.0...v5.1.1) (2026-08-11) + + +### Bug Fixes + +* restore isLayerOnMap() as abstract member of Layer ([#1748](https://github.com/googlemaps/android-maps-utils/issues/1748)) ([ddc283c](https://github.com/googlemaps/android-maps-utils/commit/ddc283c52ef239196de65acade2a40ae0b72bf46)), closes [#1746](https://github.com/googlemaps/android-maps-utils/issues/1746) + ## [5.1.0](https://github.com/googlemaps/android-maps-utils/compare/v5.0.0...v5.1.0) (2026-08-05) diff --git a/MIGRATION.md b/MIGRATION.md index 80f3470ca..51a318c41 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -19,7 +19,7 @@ If your project uses all utilities, you can import the aggregator artifact direc ```toml # gradle/libs.versions.toml [versions] -androidMapsUtils = "5.1.0" # x-release-please-version +androidMapsUtils = "5.1.1" # x-release-please-version [libraries] android-maps-utils = { group = "com.google.maps.android", name = "android-maps-utils", version.ref = "androidMapsUtils" } diff --git a/README.md b/README.md index 0abdcba50..902d7f9fd 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ dependencies { // You do not need to add a separate dependency for the Maps SDK for Android // since this library builds in the compatible version of the Maps SDK. // The aggregator artifact transitively pulls in all submodules below. - implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version } ``` @@ -59,15 +59,15 @@ Alternatively, depend only on the submodules your app needs: ```kotlin dependencies { // Base utilities: PolyUtil, SphericalUtil, collection managers, Street View metadata - implementation("com.google.maps.android:android-maps-utils-core:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils-core:5.1.1") // x-release-please-version // Marker clustering - implementation("com.google.maps.android:android-maps-utils-clustering:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils-clustering:5.1.1") // x-release-please-version // KML and GeoJSON import - implementation("com.google.maps.android:android-maps-utils-data:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils-data:5.1.1") // x-release-please-version // Heatmaps - implementation("com.google.maps.android:android-maps-utils-heatmaps:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils-heatmaps:5.1.1") // x-release-please-version // Marker icons and animation - implementation("com.google.maps.android:android-maps-utils-ui:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils-ui:5.1.1") // x-release-please-version } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 0f031e35f..b3b2da6db 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,7 +49,7 @@ tasks.register("installAndLaunch") { allprojects { group = "com.google.maps.android" // {x-release-please-start-version} - version = "5.1.0" + version = "5.1.1" // {x-release-please-end} plugins.withId("java") { diff --git a/llm-integration-prompt.md b/llm-integration-prompt.md index 948bb49ca..08d9d03e2 100644 --- a/llm-integration-prompt.md +++ b/llm-integration-prompt.md @@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file: ```kotlin dependencies { // Google Maps Utility Library - implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version } ```