From a5a06c4b2498584f0fc67ad731caa3b2e3f0c8f5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 11 Jul 2022 14:25:43 +0000 Subject: [PATCH] chore(release): 2.5.2 [skip ci] ## [2.5.2](https://github.com/googlemaps/android-maps-compose/compare/v2.5.1...v2.5.2) (2022-07-11) ### Bug Fixes * DisappearingScaleBar do not disappear after specified visibilityDurationMillis ([#168](https://github.com/googlemaps/android-maps-compose/issues/168)) ([8d0b855](https://github.com/googlemaps/android-maps-compose/commit/8d0b85511503ea25f2919585029df196e3daf346)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 83b7b1ad..76c795bd 100644 --- a/README.md +++ b/README.md @@ -244,16 +244,16 @@ To run it, you'll have to: ```groovy dependencies { - implementation 'com.google.maps.android:maps-compose:2.5.1' + implementation 'com.google.maps.android:maps-compose:2.5.2' // Make sure to also include the latest version of the Maps SDK for Android implementation 'com.google.android.gms:play-services-maps:18.0.2' // Also include Compose version `1.2.0-alpha03` or higher - for example: - implementation 'androidx.compose.foundation:foundation:2.5.1-alpha03' + implementation 'androidx.compose.foundation:foundation:2.5.2-alpha03' // Optionally, you can include the widgets library if you want to use ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:2.5.1' + implementation 'com.google.maps.android:maps-compose-widgets:2.5.2' } ``` diff --git a/build.gradle b/build.gradle index fe7caf4f..17ac52dc 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.5.1' + version = '2.5.2' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }