Skip to content

Commit ff4e3f5

Browse files
chore(main): release 5.1.1 (#1749)
1 parent ddc283c commit ff4e3f5

7 files changed

Lines changed: 18 additions & 11 deletions

File tree

.gemini/skills/android-maps-utils/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file:
1414
```kotlin
1515
dependencies {
1616
// Google Maps Utility Library
17-
implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version
17+
implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version
1818
}
1919
```
2020

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.1.0"
2+
".": "5.1.1"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [5.1.1](https://github.com/googlemaps/android-maps-utils/compare/v5.1.0...v5.1.1) (2026-08-11)
4+
5+
6+
### Bug Fixes
7+
8+
* 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)
9+
310
## [5.1.0](https://github.com/googlemaps/android-maps-utils/compare/v5.0.0...v5.1.0) (2026-08-05)
411

512

MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If your project uses all utilities, you can import the aggregator artifact direc
1919
```toml
2020
# gradle/libs.versions.toml
2121
[versions]
22-
androidMapsUtils = "5.1.0" # x-release-please-version
22+
androidMapsUtils = "5.1.1" # x-release-please-version
2323

2424
[libraries]
2525
android-maps-utils = { group = "com.google.maps.android", name = "android-maps-utils", version.ref = "androidMapsUtils" }

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050
// You do not need to add a separate dependency for the Maps SDK for Android
5151
// since this library builds in the compatible version of the Maps SDK.
5252
// The aggregator artifact transitively pulls in all submodules below.
53-
implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version
53+
implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version
5454
}
5555
```
5656

@@ -59,15 +59,15 @@ Alternatively, depend only on the submodules your app needs:
5959
```kotlin
6060
dependencies {
6161
// Base utilities: PolyUtil, SphericalUtil, collection managers, Street View metadata
62-
implementation("com.google.maps.android:android-maps-utils-core:5.1.0") // x-release-please-version
62+
implementation("com.google.maps.android:android-maps-utils-core:5.1.1") // x-release-please-version
6363
// Marker clustering
64-
implementation("com.google.maps.android:android-maps-utils-clustering:5.1.0") // x-release-please-version
64+
implementation("com.google.maps.android:android-maps-utils-clustering:5.1.1") // x-release-please-version
6565
// KML and GeoJSON import
66-
implementation("com.google.maps.android:android-maps-utils-data:5.1.0") // x-release-please-version
66+
implementation("com.google.maps.android:android-maps-utils-data:5.1.1") // x-release-please-version
6767
// Heatmaps
68-
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.1.0") // x-release-please-version
68+
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.1.1") // x-release-please-version
6969
// Marker icons and animation
70-
implementation("com.google.maps.android:android-maps-utils-ui:5.1.0") // x-release-please-version
70+
implementation("com.google.maps.android:android-maps-utils-ui:5.1.1") // x-release-please-version
7171
}
7272
```
7373

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ tasks.register<Exec>("installAndLaunch") {
4949
allprojects {
5050
group = "com.google.maps.android"
5151
// {x-release-please-start-version}
52-
version = "5.1.0"
52+
version = "5.1.1"
5353
// {x-release-please-end}
5454

5555
plugins.withId("java") {

llm-integration-prompt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the necessary dependency to the app-level `build.gradle.kts` file:
1414
```kotlin
1515
dependencies {
1616
// Google Maps Utility Library
17-
implementation("com.google.maps.android:android-maps-utils:5.1.0") // x-release-please-version
17+
implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version
1818
}
1919
```
2020

0 commit comments

Comments
 (0)