From 4de34d8065e19dd0d6c9f9194891484a98a459a2 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 25 Jul 2023 16:30:54 +0000 Subject: [PATCH] chore(release): 2.11.5 [skip ci] ## [2.11.5](https://github.com/googlemaps/android-maps-compose/compare/v2.11.4...v2.11.5) (2023-07-25) ### Bug Fixes * fixed crash when the Bitmap size is zero in the ClusterRenderer ([#336](https://github.com/googlemaps/android-maps-compose/issues/336)) ([93b9b85](https://github.com/googlemaps/android-maps-compose/commit/93b9b85c2ad552596719fe3d06f1a19cf945f501)) --- README.md | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 26acf217..558e6ed6 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,16 @@ This repository contains [Jetpack Compose][jetpack-compose] components for the [ ```groovy dependencies { - implementation 'com.google.maps.android:maps-compose:2.11.2' + implementation 'com.google.maps.android:maps-compose:2.11.5' // 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' + implementation 'com.google.android.gms:play-services-maps:2.11.5' // Optionally, you can include the Compose utils library for Clustering, etc. - implementation 'com.google.maps.android:maps-compose-utils:2.11.2' + implementation 'com.google.maps.android:maps-compose-utils:2.11.5' // Optionally, you can include the widgets library for ScaleBar, etc. - implementation 'com.google.maps.android:maps-compose-widgets:2.11.2' + implementation 'com.google.maps.android:maps-compose-widgets:2.11.5' } ``` diff --git a/build.gradle b/build.gradle index a943ac95..8e17a226 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext.projectArtifactId = { project -> allprojects { group = 'com.google.maps.android' - version = '2.11.4' + version = '2.11.5' project.ext.artifactId = rootProject.ext.projectArtifactId(project) }