Skip to content

Commit 9aac549

Browse files
chore(main): release 5.0.1
1 parent 1e41aa4 commit 9aac549

7 files changed

Lines changed: 22 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.0.0") // x-release-please-version
17+
implementation("com.google.maps.android:android-maps-utils:5.0.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.0.0"
2+
".": "5.0.1"
33
}

‎CHANGELOG.md‎

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

3+
## [5.0.1](https://github.com/googlemaps/android-maps-utils/compare/v5.0.0...v5.0.1) (2026-08-05)
4+
5+
6+
### Bug Fixes
7+
8+
* apply polygon styling to GeoJSON MultiPolygon features ([#1727](https://github.com/googlemaps/android-maps-utils/issues/1727)) ([67d7252](https://github.com/googlemaps/android-maps-utils/commit/67d7252e5c1cdf1556b7fc707e80c8372540036c))
9+
* bound untrusted GeoJSON input to prevent parser resource exhaustion ([#1733](https://github.com/googlemaps/android-maps-utils/issues/1733)) ([1e41aa4](https://github.com/googlemaps/android-maps-utils/commit/1e41aa46ea5c228a43c09dabfda1e3fb43273c41))
10+
* remove MultiGeometry features from the map in removeFeature ([#1725](https://github.com/googlemaps/android-maps-utils/issues/1725)) ([4f796ca](https://github.com/googlemaps/android-maps-utils/commit/4f796cae53717f4c218a43f34c34cf77350fb0d9))
11+
* render legacy bridge point markers visible ([#1726](https://github.com/googlemaps/android-maps-utils/issues/1726)) ([fe802a4](https://github.com/googlemaps/android-maps-utils/commit/fe802a4e04b257ab7fde4462946a8fed34ec80b0))
12+
* **visual-testing:** add UiScrollable chip scroll support for robust chip selection ([#1735](https://github.com/googlemaps/android-maps-utils/issues/1735)) ([6104d93](https://github.com/googlemaps/android-maps-utils/commit/6104d938b1e21a731d370974a496bafbed67bf59))
13+
314
## [5.0.0](https://github.com/googlemaps/android-maps-utils/compare/v4.5.2...v5.0.0) (2026-07-15)
415

516

‎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.0.0" # x-release-please-version
22+
androidMapsUtils = "5.0.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.0.0") // x-release-please-version
53+
implementation("com.google.maps.android:android-maps-utils:5.0.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.0.0") // x-release-please-version
62+
implementation("com.google.maps.android:android-maps-utils-core:5.0.1") // x-release-please-version
6363
// Marker clustering
64-
implementation("com.google.maps.android:android-maps-utils-clustering:5.0.0") // x-release-please-version
64+
implementation("com.google.maps.android:android-maps-utils-clustering:5.0.1") // x-release-please-version
6565
// KML and GeoJSON import
66-
implementation("com.google.maps.android:android-maps-utils-data:5.0.0") // x-release-please-version
66+
implementation("com.google.maps.android:android-maps-utils-data:5.0.1") // x-release-please-version
6767
// Heatmaps
68-
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.0.0") // x-release-please-version
68+
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.0.1") // x-release-please-version
6969
// Marker icons and animation
70-
implementation("com.google.maps.android:android-maps-utils-ui:5.0.0") // x-release-please-version
70+
implementation("com.google.maps.android:android-maps-utils-ui:5.0.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.0.0"
52+
version = "5.0.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.0.0") // x-release-please-version
17+
implementation("com.google.maps.android:android-maps-utils:5.0.1") // x-release-please-version
1818
}
1919
```
2020

0 commit comments

Comments
 (0)