diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af3ee3156..c57e8b6340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ Mapbox welcomes participation and contributions from everyone. # main -# 11.4.0-beta.2 + +# 11.4.0-beta.2 April 30, 2024 ## Features ✨ and improvements 🏁 * Avoid locking main thread when it is not needed on map destroy. @@ -16,6 +17,7 @@ Mapbox welcomes participation and contributions from everyone. ## Dependencies * Update gl-native to v11.4.0-beta.2 and common to v24.4.0-beta.2. + # 11.4.0-beta.1 April 29, 2024 ## Breaking changes ⚠️ * [compose] Remove `locationComponentSettings` from `MapboxMap` composable function, `MapEffect` with location component API should be used instead. More compose-friendly location component API will be introduced in future releases. diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 6ba2630528..d844bc847d 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.4.0-beta.1' + implementation 'com.mapbox.extension:maps-androidauto:11.4.0-beta.2' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index 774d9c3423..52dc73730b 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.4.0-beta.1' + implementation 'com.mapbox.extension:maps-compose:11.4.0-beta.2' // 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.4.0-beta.1' + implementation 'com.mapbox.maps:android:11.4.0-beta.2' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index 1026cd37a2..3007a11288 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.4.0-beta.1' + implementation 'com.mapbox.extension:maps-localization:11.4.0-beta.2' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index 949b5288a1..4e3821d663 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.4.0-beta.1' + implementation 'com.mapbox.extension:maps-style:11.4.0-beta.2' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 35ced61fd2..01c225ba41 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.4.0-beta.2' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 63a8b86e44..86bdd5d9eb 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-annotation:11.4.0-beta.2' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index dcb523ebe7..c8307c6147 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-attribution:11.4.0-beta.2' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index 2d048438ec..e402a343bc 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-compass:11.4.0-beta.2' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.4.0-beta.2' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index 5e20752d45..aa34a2f8fc 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-gestures:11.4.0-beta.2' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.4.0-beta.2' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index c5dd8ec138..d3b8786a4f 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-lifecycle:11.4.0-beta.2' // 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 d06d9a75d1..3fd8701f09 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.4.0-beta.2' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 23ade952e1..8965d72ae0 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-logo:11.4.0-beta.2' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index 6d7a359084..57cede8f11 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-scalebar:11.4.0-beta.2' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index e834d4007b..411c2e992a 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.4.0-beta.1' + implementation 'com.mapbox.plugin:maps-viewport:11.4.0-beta.2' } ```