From dc8843776396da828a8d039faf6e32440f4177ba Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 17 Nov 2023 19:17:33 +0000 Subject: [PATCH] chore(release): 4.3.0 [skip ci] # [4.3.0](https://github.com/googlemaps/android-maps-compose/compare/v4.2.0...v4.3.0) (2023-11-17) ### Features * expose the ClusterManager to support custom algorithms ([#421](https://github.com/googlemaps/android-maps-compose/issues/421)) ([b892e61](https://github.com/googlemaps/android-maps-compose/commit/b892e61ea86f04351ceda14e7a2f5fa507ac7164)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 52aeda45..91deae55 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:4.2.0' + implementation 'com.google.maps.android:maps-compose:4.3.0' // Optionally, you can include the Compose utils library for Clustering, // Street View metadata checks, etc. - implementation 'com.google.maps.android:maps-compose-utils:4.2.0' + implementation 'com.google.maps.android:maps-compose-utils:4.3.0' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:4.2.0' + implementation 'com.google.maps.android:maps-compose-widgets:4.3.0' } ``` diff --git a/build.gradle b/build.gradle index 20eec68b..5da06fe3 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '4.2.0' + version = '4.3.0' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }