From 05477edf2c117d0fcc30ca0c22eb3bc2943af072 Mon Sep 17 00:00:00 2001 From: "mapbox-github-ci-writer-1[bot]" <79158907+mapbox-github-ci-writer-1[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 16:04:13 +0000 Subject: [PATCH] changelog for v11.5.0 (#2609) Co-authored-by: root --- CHANGELOG.md | 4 +++- extension-androidauto/README.md | 2 +- extension-compose/README.md | 4 ++-- extension-localization/README.md | 2 +- extension-style/README.md | 2 +- plugin-animation/README.md | 2 +- plugin-annotation/README.md | 2 +- plugin-attribution/README.md | 2 +- plugin-compass/README.md | 4 ++-- plugin-gestures/README.md | 4 ++-- plugin-lifecycle/README.md | 2 +- plugin-locationcomponent/README.md | 2 +- plugin-logo/README.md | 2 +- plugin-scalebar/README.md | 2 +- plugin-viewport/README.md | 2 +- 15 files changed, 20 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d795eff1d3..0001153bf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ Mapbox welcomes participation and contributions from everyone. # main -# 11.5.0 + +# 11.5.0 July 05, 2024 ## Breaking changes ⚠️ * [compose] Make `MapboxMap.onMapClickListener` and `MapboxMap.onMapLongClickListener` nullable and default to `null`. * [compose] Rename `ImportConfig` to `ImportConfigs`. @@ -69,6 +70,7 @@ Mapbox welcomes participation and contributions from everyone. ## Dependencies * Update gl-native to v11.5.1 and common to v24.5.0. + # 11.5.0-rc.1 June 20, 2024 ## Breaking changes ⚠️ * [compose] Make `MapboxMap.onMapClickListener` and `MapboxMap.onMapLongClickListener` nullable and default to `null`. diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 043771264a..5318b7b273 100644 --- a/extension-androidauto/README.md +++ b/extension-androidauto/README.md @@ -33,7 +33,7 @@ allprojects { // In your build.gradle, add the extension with your other dependencies. dependencies { // Note that the Mapbox Android Auto Extension depends on the entire Mapbox Maps SDK, it will bring the whole Mapbox Maps SDK with the same version as transitive dependency. - implementation 'com.mapbox.extension:maps-androidauto:11.5.0-rc.1' + implementation 'com.mapbox.extension:maps-androidauto:11.5.0' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index 059877a641..2e62f5ae88 100644 --- a/extension-compose/README.md +++ b/extension-compose/README.md @@ -51,11 +51,11 @@ allprojects { // In your build.gradle, add the compose extension with your other dependencies. dependencies { - implementation 'com.mapbox.extension:maps-compose:11.5.0-rc.1' + implementation 'com.mapbox.extension:maps-compose:11.5.0' // Pick your versions of Android Mapbox Map SDK // Note that Compose extension is compatible with Maps SDK v11.0+. - implementation 'com.mapbox.maps:android:11.5.0-rc.1' + implementation 'com.mapbox.maps:android:11.5.0' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index 7dc8b8e82a..f998b40291 100644 --- a/extension-localization/README.md +++ b/extension-localization/README.md @@ -31,7 +31,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.extension:maps-localization:11.5.0-rc.1' + implementation 'com.mapbox.extension:maps-localization:11.5.0' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index f93b5102cd..67d6ce7f9c 100644 --- a/extension-style/README.md +++ b/extension-style/README.md @@ -32,7 +32,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.extension:maps-style:11.5.0-rc.1' + implementation 'com.mapbox.extension:maps-style:11.5.0' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index a037931654..247b760f57 100644 --- a/plugin-animation/README.md +++ b/plugin-animation/README.md @@ -34,7 +34,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.5.0' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 40f476e22f..a0c4da754c 100644 --- a/plugin-annotation/README.md +++ b/plugin-annotation/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-annotation:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-annotation:11.5.0' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index 804cb0caf1..323cdeca2e 100644 --- a/plugin-attribution/README.md +++ b/plugin-attribution/README.md @@ -33,7 +33,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-attribution:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-attribution:11.5.0' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index 8ad2b36d01..fb90888b95 100644 --- a/plugin-compass/README.md +++ b/plugin-compass/README.md @@ -32,9 +32,9 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-compass:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-compass:11.5.0' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.5.0' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index 0b4268e034..2e05bb28ad 100644 --- a/plugin-gestures/README.md +++ b/plugin-gestures/README.md @@ -30,9 +30,9 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-gestures:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-gestures:11.5.0' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.5.0' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index 28fb09c955..69857ff491 100644 --- a/plugin-lifecycle/README.md +++ b/plugin-lifecycle/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-lifecycle:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-lifecycle:11.5.0' // Make sure the version of appcompat is 1.3.0+ implementation 'androidx.appcompat:appcompat:1.3.0' } diff --git a/plugin-locationcomponent/README.md b/plugin-locationcomponent/README.md index 66ac82d396..4a64bd080c 100644 --- a/plugin-locationcomponent/README.md +++ b/plugin-locationcomponent/README.md @@ -32,7 +32,7 @@ allprojects { } // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-locationcomponent:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.5.0' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 82f5995b93..9eb3830efd 100644 --- a/plugin-logo/README.md +++ b/plugin-logo/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-logo:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-logo:11.5.0' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index 7101f00e03..61b6dad3b3 100644 --- a/plugin-scalebar/README.md +++ b/plugin-scalebar/README.md @@ -32,7 +32,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-scalebar:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-scalebar:11.5.0' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index cd2f3f005c..c0f1817043 100644 --- a/plugin-viewport/README.md +++ b/plugin-viewport/README.md @@ -50,7 +50,7 @@ allprojects { } // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-viewport:11.5.0-rc.1' + implementation 'com.mapbox.plugin:maps-viewport:11.5.0' } ```