diff --git a/.gemini/skills/android-maps-utils/SKILL.md b/.gemini/skills/android-maps-utils/SKILL.md index c094ae05e..24315df4b 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:4.1.1") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils:5.0.0") // x-release-please-version } ``` diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 97d2fc7bb..de0c1f314 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.5.2" + ".": "5.0.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index acd6a3a0b..9d344fd57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [5.0.0](https://github.com/googlemaps/android-maps-utils/compare/v4.5.2...v5.0.0) (2026-07-15) + + +### ⚠ BREAKING CHANGES + +* rewrite android maps utils ([#1658](https://github.com/googlemaps/android-maps-utils/issues/1658)) + +### Features + +* rewrite android maps utils ([#1658](https://github.com/googlemaps/android-maps-utils/issues/1658)) ([eeb0156](https://github.com/googlemaps/android-maps-utils/commit/eeb01567e47a118f5cc4ef10f2c81e033b25d147)) + + +### Bug Fixes + +* prevent StackOverflowError from deeply nested GeometryCollection in GeoJsonParser ([#1699](https://github.com/googlemaps/android-maps-utils/issues/1699)) ([f513807](https://github.com/googlemaps/android-maps-utils/commit/f513807fb6f21a941b67274148415e15b440f53c)) + ## [4.5.2](https://github.com/googlemaps/android-maps-utils/compare/v4.5.1...v4.5.2) (2026-07-07) diff --git a/MIGRATION.md b/MIGRATION.md index 36db0f69d..9fa8aa337 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.0.0-rc1" # x-release-please-version +androidMapsUtils = "5.0.0" # x-release-please-version [libraries] android-maps-utils = { group = "com.google.maps.android", name = "android-maps-utils", version.ref = "androidMapsUtils" } diff --git a/build.gradle.kts b/build.gradle.kts index 5628e0384..6ac397f66 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 = "4.5.2" + version = "5.0.0" // {x-release-please-end} plugins.withId("java") { diff --git a/llm-integration-prompt.md b/llm-integration-prompt.md index c094ae05e..24315df4b 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:4.1.1") // x-release-please-version + implementation("com.google.maps.android:android-maps-utils:5.0.0") // x-release-please-version } ```