From 44327bc2707c765c3f0c48de372cc6a2d826e0fc Mon Sep 17 00:00:00 2001 From: "mapbox-github-ci-writer-3[bot]" <79159042+mapbox-github-ci-writer-3[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 08:21:12 +0000 Subject: [PATCH] changelog for v11.2.0 (#2283) 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 7708c3e00c..9cef2feedb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ Mapbox welcomes participation and contributions from everyone. -# 11.2.0 + +# 11.2.0 February 29, 2024 ## Features ✨ and improvements 🏁 * Introduce better way of SDK initialization to avoid `java.lang.UnsatisfiedLinkError` exception on process startup. If the native library is still not found when actual Mapbox API is called, meaningful `MapboxInitializerException` is thrown and could be caught and processed on user's side. * Introduce `MapboxMap.getCenterAltitudeMode` API. @@ -50,6 +51,7 @@ Mapbox welcomes participation and contributions from everyone. * Update gl-native to v11.2.0 and common to v24.2.0. * Upgrade to [Kotlin Data compat v0.8.0](https://github.com/tobrun/kotlin-data-compat/releases/tag/v0.8.0). + # 11.2.0-rc.1 February 15, 2024 ## Features ✨ and improvements 🏁 * [compose] Introduce `DisposableMapEffect` API. diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 6ed2a8234d..971e26c517 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.2.0-rc.1' + implementation 'com.mapbox.extension:maps-androidauto:11.2.0' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index 8531f7da6c..4b0edf1cb6 100644 --- a/extension-compose/README.md +++ b/extension-compose/README.md @@ -49,11 +49,11 @@ allprojects { // In your build.gradle, add the compose extension with your other dependencies. dependencies { - implementation 'com.mapbox.extension:maps-compose:11.2.0-rc.1' + implementation 'com.mapbox.extension:maps-compose:11.2.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.2.0-rc.1' + implementation 'com.mapbox.maps:android:11.2.0' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index 22335a4c43..97dec1c156 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.2.0-rc.1' + implementation 'com.mapbox.extension:maps-localization:11.2.0' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index a0527a0b0b..3f4fd8fe96 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.2.0-rc.1' + implementation 'com.mapbox.extension:maps-style:11.2.0' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 04720b04b4..7625f13d3a 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.2.0' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 1d8833ec08..e5fa0a7d47 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-annotation:11.2.0' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index aef184ee8a..445b6dcad9 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-attribution:11.2.0' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index e3c8cd612b..b3562c2f93 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-compass:11.2.0' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.2.0' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index 8fc4668d95..43c877f128 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-gestures:11.2.0' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-animation:11.2.0' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index 8c4cb584cc..fa012386e3 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-lifecycle:11.2.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 0ec70914b7..78d94f00fd 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.2.0' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 14db9fc42c..fa0ad629e9 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-logo:11.2.0' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index b379590a6b..d941e558dd 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-scalebar:11.2.0' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index a294a8cdd9..7867583631 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.2.0-rc.1' + implementation 'com.mapbox.plugin:maps-viewport:11.2.0' } ```