From b4aaaa883751d9c342e4fbb77f86f9e5221457c7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 10 Oct 2023 07:30:47 +0000 Subject: [PATCH] chore(release): 3.1.1 [skip ci] ## [3.1.1](https://github.com/googlemaps/android-maps-compose/compare/v3.1.0...v3.1.1) (2023-10-10) ### Bug Fixes * fix marker listener in matching node ([#425](https://github.com/googlemaps/android-maps-compose/issues/425)) ([4405189](https://github.com/googlemaps/android-maps-compose/commit/4405189165723bc6f5ca789bce4a5bee4e64529c)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b400700f6..e31848ce6 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ 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:3.1.0' + implementation 'com.google.maps.android:maps-compose:3.1.1' // Optionally, you can include the Compose utils library for Clustering, etc. - implementation 'com.google.maps.android:maps-compose-utils:3.1.0' + implementation 'com.google.maps.android:maps-compose-utils:3.1.1' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:3.1.0' + implementation 'com.google.maps.android:maps-compose-widgets:3.1.1' } ``` diff --git a/build.gradle b/build.gradle index 6ad95d717..f2e3bec67 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '3.1.0' + version = '3.1.1' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }