From 60eee54b2a892d163b694e70b1a557ebb0aa1b32 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: Thu, 13 Feb 2025 14:46:24 +0000 Subject: [PATCH] changelog for v11.10.0 (#2957) 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 +- gradle.properties | 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 +- 16 files changed, 21 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c706dc131b..9258a565dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ Mapbox welcomes participation and contributions from everyone. # main -# 11.10.0 + +# 11.10.0 February 13, 2025 ## Features ✨ and improvements 🏁 * Localize geofencing attribution dialog. * Introduce `ViewAnnotationOptions.priority`, deprecate `ViewAnnotationOptions.selected`. Use this property to define view annotation sort order. @@ -59,6 +60,7 @@ Mapbox welcomes participation and contributions from everyone. * Update gl-native to v11.10.0 and common to v24.10.0. + # 11.9.2 February 05, 2025 ## Bug fixes 🐞 * Fix exception while parsing the config expression. diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 085f12c22a..ef5e558aee 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.10.0-rc.1' + implementation 'com.mapbox.extension:maps-androidauto:11.10.0' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index f12c9fd3f3..c730d0b5bc 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.10.0-rc.1' + implementation 'com.mapbox.extension:maps-compose:11.10.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.10.0-rc.1' + implementation 'com.mapbox.maps:android:11.10.0' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index 18553ed96c..30acd90fa1 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.10.0-rc.1' + implementation 'com.mapbox.extension:maps-localization:11.10.0' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index 054c27e040..b54c33aadd 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.10.0-rc.1' + implementation 'com.mapbox.extension:maps-style:11.10.0' } ``` diff --git a/gradle.properties b/gradle.properties index e5f17c12eb..475edfd9c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=11.10.0-SNAPSHOT +VERSION_NAME=11.11.0-SNAPSHOT # Project-wide Gradle settings. # IDE (e.g. Android Studio) users: diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 054fec5399..29bcc232f0 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.10.0' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 61aa373c63..47c2116c02 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-annotation:11.10.0' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index d92065072b..376b8a3151 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-attribution:11.10.0' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index a8e24f2aa0..e450ca7ba5 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-compass:11.10.0' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.10.0' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index 8c95e58bb4..e193abc54f 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-gestures:11.10.0' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.10.0' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index a72f7dd173..80ed3243f9 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-lifecycle:11.10.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 06acd1f144..232a4e25cd 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.10.0' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 073354846b..21557a062b 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-logo:11.10.0' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index cea75fe770..0e4bfc8202 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-scalebar:11.10.0' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index 80da57a124..355314f9c0 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.10.0-rc.1' + implementation 'com.mapbox.plugin:maps-viewport:11.10.0' } ```