From d5533b47f407414ef27c47eefd69844c033b337a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 May 2024 13:55:59 +0000 Subject: [PATCH] chore(release): 5.0.1 [skip ci] ## [5.0.1](https://github.com/googlemaps/android-maps-compose/compare/v5.0.0...v5.0.1) (2024-05-08) ### Bug Fixes * documentation fix ([#568](https://github.com/googlemaps/android-maps-compose/issues/568)) ([3b0a10f](https://github.com/googlemaps/android-maps-compose/commit/3b0a10f9e2fb923bb3e7f7378f38afc776673318)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ee85d8d2..af5cc550 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:5.0.0' + implementation 'com.google.maps.android:maps-compose:5.0.1' // Optionally, you can include the Compose utils library for Clustering, // Street View metadata checks, etc. - implementation 'com.google.maps.android:maps-compose-utils:5.0.0' + implementation 'com.google.maps.android:maps-compose-utils:5.0.1' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:5.0.0' + implementation 'com.google.maps.android:maps-compose-widgets:5.0.1' } ``` diff --git a/build.gradle b/build.gradle index b7c75395..6529c648 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '5.0.0' + version = '5.0.1' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }