From d299486d3298cb6955ef1a857cc2b97e5d421990 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 25 Oct 2023 22:38:16 +0000 Subject: [PATCH] chore(release): 4.0.0 [skip ci] # [4.0.0](https://github.com/googlemaps/android-maps-compose/compare/v3.1.1...v4.0.0) (2023-10-25) * feat!: setting the custom location button via sample (#428) ([cebb6a0](https://github.com/googlemaps/android-maps-compose/commit/cebb6a0a5f9f66d445c02abd80f5ca31d4f60355)), closes [#428](https://github.com/googlemaps/android-maps-compose/issues/428) ### BREAKING CHANGES * remove `myLocationButton` from `GoogleMap`. Equivalent functionality for customizing a map control is demonstrated in the sample app. --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2109f442d..f29f9f5e7 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ 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:3.1.1' + implementation 'com.google.maps.android:maps-compose:4.0.0' // Optionally, you can include the Compose utils library for Clustering, // Street View metadata checks, etc. - implementation 'com.google.maps.android:maps-compose-utils:3.1.1' + implementation 'com.google.maps.android:maps-compose-utils:4.0.0' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:3.1.1' + implementation 'com.google.maps.android:maps-compose-widgets:4.0.0' } ``` diff --git a/build.gradle b/build.gradle index f2e3bec67..98be586a4 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '3.1.1' + version = '4.0.0' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }