From bb21036a96400ac32ad635e117a89acae7570cf9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 28 Oct 2023 07:38:52 +0000 Subject: [PATCH] chore(release): 4.1.1 [skip ci] ## [4.1.1](https://github.com/googlemaps/android-maps-compose/compare/v4.1.0...v4.1.1) (2023-10-28) ### Bug Fixes * expose maps-ktx classes to app-level modules ([#451](https://github.com/googlemaps/android-maps-compose/issues/451)) ([6b4c7f1](https://github.com/googlemaps/android-maps-compose/commit/6b4c7f1857c6f533339a49dced1019088b44acaf)) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e4d0e053..a39aca15 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ 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:4.1.0' + implementation 'com.google.maps.android:maps-compose:4.1.1' // Optionally, you can include the Compose utils library for Clustering, // Street View metadata checks, etc. - implementation 'com.google.maps.android:maps-compose-utils:4.1.0' + implementation 'com.google.maps.android:maps-compose-utils:4.1.1' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:4.1.0' + implementation 'com.google.maps.android:maps-compose-widgets:4.1.1' } ``` diff --git a/build.gradle b/build.gradle index 9eaeaa53..99957480 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '4.1.0' + version = '4.1.1' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }