From 6fb78b89747ce116a96fbcbb719517796c39d80d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 18 Aug 2022 16:37:46 +0000 Subject: [PATCH] chore(release): 2.7.0 [skip ci] # [2.7.0](https://github.com/googlemaps/android-maps-compose/compare/v2.6.0...v2.7.0) (2022-08-18) ### Features * Bump compose compiler to 1.3.0 and libs to 1.2.1 ([#189](https://github.com/googlemaps/android-maps-compose/issues/189)) ([ee223b3](https://github.com/googlemaps/android-maps-compose/commit/ee223b33f0b14d7832c354125d2d518ec6bcd641)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd4d647df..01484b581 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.6.0' + implementation 'com.google.maps.android:maps-compose:2.7.0' // 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.6.0-alpha03' + implementation 'androidx.compose.foundation:foundation:2.7.0-alpha03' // Optionally, you can include the widgets library if you want to use ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:2.6.0' + implementation 'com.google.maps.android:maps-compose-widgets:2.7.0' } ``` diff --git a/build.gradle b/build.gradle index 73690edce..35e8f1f2e 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.6.0' + version = '2.7.0' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }