Skip to content

Commit 9559451

Browse files
pjleonard37evil159Release SDK bot for Maps SDK team
authored
Update versions for 2.8.0 release (#938)
* Generate license (#927) * Prepare 2.8.0 Release (#937) * Prepare 2.8.0 release * Update license * Update changelog --------- Co-authored-by: Release SDK bot for Maps SDK team <maps_sdk_ios@mapbox.com> --------- Co-authored-by: Roman Laitarenko <roman.laitarenko@mapbox.com> Co-authored-by: Release SDK bot for Maps SDK team <maps_sdk_ios@mapbox.com>
1 parent 41630e3 commit 9559451

File tree

14 files changed

+4007
-56
lines changed

14 files changed

+4007
-56
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ jobs:
225225
- checkout
226226
- flutter/install_sdk_and_pub:
227227
version: 3.24.3
228+
- run:
229+
name: Check license
230+
command: bash scripts/license.sh --mode validate
228231
- run:
229232
name: Run dart analyze
230233
command: dart analyze

CHANGELOG.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1-
### main
1+
### 2.8.0
22

33
* Update geometry conversions on Android to use Longitude, Latitude instead of Latitude, Longitude order. This follows the order used by the GeoJSON Specification and the Turf library.
4-
5-
### 2.8.0-rc.1
6-
74
* [Android] Fix color alpha value conversion.
8-
9-
### 2.8.0-beta.1
10-
115
* Introduce experimental `MapboxMap.startPerformanceStatisticsCollection` / `MapboxMap.stopPerformanceStatisticsCollection` APIs allowing to start / stop collecting map rendering performance statistics.
12-
* Update Maps SDK to 11.12.0-beta.1
6+
* Update Maps SDK to 11.12.0
137

148
### 2.7.0
159

LICENSE

Lines changed: 3858 additions & 14 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mapbox Maps SDK Flutter SDK
22

3-
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.12.0-rc.1). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.
3+
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.12.0). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.
44

55
Web and desktop are not supported.
66

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
5959
}
6060

6161
dependencies {
62-
implementation "com.mapbox.maps:android:11.12.0-rc.1"
62+
implementation "com.mapbox.maps:android:11.12.0"
6363

6464
implementation "androidx.annotation:annotation:1.5.0"
6565
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"

example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ packages:
1313
dependency: transitive
1414
description:
1515
name: async
16-
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
16+
sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "2.13.0"
19+
version: "2.12.0"
2020
benchmark:
2121
dependency: transitive
2222
description:
@@ -85,10 +85,10 @@ packages:
8585
dependency: transitive
8686
description:
8787
name: fake_async
88-
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
88+
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc"
8989
url: "https://pub.dev"
9090
source: hosted
91-
version: "1.3.3"
91+
version: "1.3.2"
9292
ffi:
9393
dependency: transitive
9494
description:
@@ -269,7 +269,7 @@ packages:
269269
path: ".."
270270
relative: true
271271
source: path
272-
version: "2.8.0-rc.1"
272+
version: "2.8.0"
273273
matcher:
274274
dependency: transitive
275275
description:
@@ -527,10 +527,10 @@ packages:
527527
dependency: transitive
528528
description:
529529
name: webdriver
530-
sha256: "2f3a14ca026957870cfd9c635b83507e0e51d8091568e90129fbf805aba7cade"
530+
sha256: "3d773670966f02a646319410766d3b5e1037efb7f07cc68f844d5e06cd4d61c8"
531531
url: "https://pub.dev"
532532
source: hosted
533-
version: "3.1.0"
533+
version: "3.0.4"
534534
xdg_directories:
535535
dependency: transitive
536536
description:

ios/mapbox_maps_flutter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'mapbox_maps_flutter'
7-
s.version = '2.8.0-rc.1'
7+
s.version = '2.8.0'
88

99
s.summary = 'Mapbox Maps SDK Flutter Plugin.'
1010
s.description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '14.0'
1919

20-
s.dependency 'MapboxMaps', '11.12.0-rc.1'
20+
s.dependency 'MapboxMaps', '11.12.0'
2121
s.dependency 'Turf', '4.0.0'
2222

2323
# Flutter.framework does not contain a i386 slice.

ios/mapbox_maps_flutter/Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)