From 5dac3d9ad738500229fa6e58d6cdf152b444c3e9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 1 Jul 2022 20:28:52 +0000 Subject: [PATCH] chore(release): 2.5.1 [skip ci] ## [2.5.1](https://github.com/googlemaps/android-maps-compose/compare/v2.5.0...v2.5.1) (2022-07-01) ### Bug Fixes * DisappearingScaleBar modifier (e.g., for alignment) ([#169](https://github.com/googlemaps/android-maps-compose/issues/169)) ([f00ad99](https://github.com/googlemaps/android-maps-compose/commit/f00ad994143f8de473a5ef6098908c225b43c35b)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8836ffe8..83b7b1ad 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.0' + implementation 'com.google.maps.android:maps-compose:2.5.1' // 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.0-alpha03' + implementation 'androidx.compose.foundation:foundation:2.5.1-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.0' + implementation 'com.google.maps.android:maps-compose-widgets:2.5.1' } ``` diff --git a/build.gradle b/build.gradle index 07aa5636..fe7caf4f 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.5.0' + version = '2.5.1' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }