From 7013e0a1266597ad307538c6f48c5330f3754269 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 19 Jan 2023 19:43:26 +0000 Subject: [PATCH] chore(release): 2.8.1 [skip ci] ## [2.8.1](https://github.com/googlemaps/android-maps-compose/compare/v2.8.0...v2.8.1) (2023-01-19) ### Performance Improvements * Make CameraPositionState and MarkerState stable ([#254](https://github.com/googlemaps/android-maps-compose/issues/254)) ([52bd69e](https://github.com/googlemaps/android-maps-compose/commit/52bd69e7c574edb388645fef622bf67f8067e6e3)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fde7bf8b5..2ee1e7241 100644 --- a/README.md +++ b/README.md @@ -258,16 +258,16 @@ To run it, you'll have to: ```groovy dependencies { - implementation 'com.google.maps.android:maps-compose:2.8.0' + implementation 'com.google.maps.android:maps-compose:2.8.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.8.0-alpha03' + implementation 'androidx.compose.foundation:foundation:2.8.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.8.0' + implementation 'com.google.maps.android:maps-compose-widgets:2.8.1' } ``` diff --git a/build.gradle b/build.gradle index 6f018bc2b..993a299c3 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.8.0' + version = '2.8.1' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }