From 8c6c3b0ae14b5325b552bbcafa093372c2448c60 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 3 Oct 2023 19:33:49 +0000 Subject: [PATCH] chore(release): 3.0.0 [skip ci] # [3.0.0](https://github.com/googlemaps/android-maps-compose/compare/v2.15.0...v3.0.0) (2023-10-03) ### breaking * simplify dependencies ([9456fec](https://github.com/googlemaps/android-maps-compose/commit/9456fec4659458e603a499ee10f51877b7f82623)), closes [#419](https://github.com/googlemaps/android-maps-compose/issues/419) [#360](https://github.com/googlemaps/android-maps-compose/issues/360) [#377](https://github.com/googlemaps/android-maps-compose/issues/377) ### Reverts * Revert "chore: update semantic-release config (#416)" (#417) ([dff9276](https://github.com/googlemaps/android-maps-compose/commit/dff9276d2214e07ac5e0f3a73d4650957e7baefa)), closes [#416](https://github.com/googlemaps/android-maps-compose/issues/416) [#417](https://github.com/googlemaps/android-maps-compose/issues/417) ### BREAKING CHANGES * remove guidance to specify Maps SDK for Android and Utility Library dependencies alongside Maps Compose. These dependencies are pulled in by the Maps Compose build script to ensure version compatibility. --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 878c4101f..cec4a7672 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ 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:2.15.0' + implementation 'com.google.maps.android:maps-compose:3.0.0' // Optionally, you can include the Compose utils library for Clustering, etc. - implementation 'com.google.maps.android:maps-compose-utils:2.15.0' + implementation 'com.google.maps.android:maps-compose-utils:3.0.0' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:2.15.0' + implementation 'com.google.maps.android:maps-compose-widgets:3.0.0' } ``` diff --git a/build.gradle b/build.gradle index 02b6cdedf..99add1953 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.15.0' + version = '3.0.0' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }