diff --git a/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved
index 650bedc993e2..3acab2391b8e 100644
--- a/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved
+++ b/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved
@@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-common-ios.git",
"state" : {
- "revision" : "660cc68685c4ca551cc2815ab3607d54d906c8a7",
- "version" : "24.1.0-rc.1"
+ "revision" : "6ed3e33b51d3e3162843885f6914d7fb175609c6",
+ "version" : "24.1.0"
}
},
{
@@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
"state" : {
- "revision" : "8b3d2e9bf0886995cd6c05f39f7a5ac4691d0fc9",
- "version" : "11.1.0-rc.1"
+ "revision" : "d9cdf51cf4b897811a5c5d5135d3c772830e2b7c",
+ "version" : "11.1.0"
}
},
{
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ad498575806..f30868bcc739 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,14 +5,18 @@ Mapbox welcomes participation and contributions from everyone.
## main
* Add easing curve parameter to `CameraAnimationsManager.fly(to:duration:curve:completion)`, make `TimingCurve` public with few more options.
-* Add `customData` field in Annotaion and deprecate `userInfo`. `userInfo` behaviour rolled back to v10 behaviour.
* Fix MapView flickering during resizing.
* Fix glitch in chained camera animations.
-* Make padding optional in `MapboxMap.camera(for:padding:bearing:pitch:maxZoom:offset:)` and `MapboxMap.camera(for:padding:bearing:pitch:)`.
* Build XCFramework with `SWIFT_SERIALIZE_DEBUGGING_OPTIONS=NO` flag to avoid serialized search paths in Swift modules.
-* Fixed a bug where the attribution dialog does not appear when there is a presented view controller.
* Fixed a crash that occurs when annotations have duplicate identifiers.
+## 11.1.0 - 17 January, 2024
+
+* Add `customData` field in Annotaion and deprecate `userInfo`. `userInfo` behaviour rolled back to v10 behaviour.
+* Fixed a bug where the attribution dialog does not appear when there is a presented view controller.
+* Make padding optional in `MapboxMap.camera(for:padding:bearing:pitch:maxZoom:offset:)` and `MapboxMap.camera(for:padding:bearing:pitch:)`.
+* Update CoreMaps to 11.1.0 and Common to 24.1.0
+
## 11.1.0-rc.1 - 04 January, 2024
### Bug fixes 🐞
diff --git a/LICENSE.md b/LICENSE.md
index 8c1e74ee15fc..d31649e86075 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
## License
-Mapbox Maps for iOS version 11.1.0-rc.1
+Mapbox Maps for iOS version 11.1.0
Mapbox Maps iOS SDK
Copyright © 2021 - 2024 Mapbox, Inc. All rights reserved.
@@ -31,7 +31,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
---
-### MapboxCoreMaps,11.1.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
+### MapboxCoreMaps,11.1.0,Mapbox ToS,Mapbox,https://www.mapbox.com/
```
Mapbox Core Maps version 10.0
diff --git a/MapboxMaps.podspec b/MapboxMaps.podspec
index 3ae25f31e18c..aba508321560 100644
--- a/MapboxMaps.podspec
+++ b/MapboxMaps.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|
- maps_version = '11.1.0-rc.1'
+ maps_version = '11.1.0'
m.name = 'MapboxMaps'
m.version = maps_version
@@ -21,8 +21,8 @@ Pod::Spec.new do |m|
m.source_files = 'Sources/MapboxMaps/**/*.{swift,h}'
m.resource_bundles = { 'MapboxMapsResources' => ['Sources/**/*.{xcassets,strings}', 'Sources/MapboxMaps/MapboxMaps.json', 'Sources/MapboxMaps/PrivacyInfo.xcprivacy'] }
- m.dependency 'MapboxCoreMaps', '11.1.0-rc.1'
- m.dependency 'MapboxCommon', '24.1.0-rc.1'
+ m.dependency 'MapboxCoreMaps', '11.1.0'
+ m.dependency 'MapboxCommon', '24.1.0'
m.dependency 'Turf', '2.7.0'
end
diff --git a/Package.resolved b/Package.resolved
index c646014d2173..93fd81fdb9d2 100644
--- a/Package.resolved
+++ b/Package.resolved
@@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-common-ios.git",
"state" : {
- "revision" : "660cc68685c4ca551cc2815ab3607d54d906c8a7",
- "version" : "24.1.0-rc.1"
+ "revision" : "6ed3e33b51d3e3162843885f6914d7fb175609c6",
+ "version" : "24.1.0"
}
},
{
@@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
"state" : {
- "revision" : "8b3d2e9bf0886995cd6c05f39f7a5ac4691d0fc9",
- "version" : "11.1.0-rc.1"
+ "revision" : "d9cdf51cf4b897811a5c5d5135d3c772830e2b7c",
+ "version" : "11.1.0"
}
},
{
diff --git a/Package.swift b/Package.swift
index 623493151e58..bcef38030004 100644
--- a/Package.swift
+++ b/Package.swift
@@ -3,9 +3,9 @@
import PackageDescription
-let coreMaps = MapsDependency.coreMaps(version: "11.1.0-rc.1")
+let coreMaps = MapsDependency.coreMaps(version: "11.1.0")
-let common = MapsDependency.common(version: "24.1.0-rc.1")
+let common = MapsDependency.common(version: "24.1.0")
let mapboxMapsPath: String? = nil
diff --git a/Sources/MapboxMaps/Info.plist b/Sources/MapboxMaps/Info.plist
index 068d5b9ae0c9..fdce97ab9906 100644
--- a/Sources/MapboxMaps/Info.plist
+++ b/Sources/MapboxMaps/Info.plist
@@ -17,6 +17,6 @@
CFBundleShortVersionString
11.1.0
CFBundleVersion
- 111
+ 112
diff --git a/Sources/MapboxMaps/MapboxMaps.json b/Sources/MapboxMaps/MapboxMaps.json
index a40f85db05f0..c6d443c6d113 100644
--- a/Sources/MapboxMaps/MapboxMaps.json
+++ b/Sources/MapboxMaps/MapboxMaps.json
@@ -1,3 +1,3 @@
{
- "version" : "11.1.0-rc.1"
+ "version" : "11.1.0"
}
diff --git a/scripts/release/packager/versions.json b/scripts/release/packager/versions.json
index 5d129fe3173f..00a396588605 100644
--- a/scripts/release/packager/versions.json
+++ b/scripts/release/packager/versions.json
@@ -1,5 +1,5 @@
{
- "MapboxCoreMaps": "11.1.0-rc.1",
- "MapboxCommon": "24.1.0-rc.1",
+ "MapboxCoreMaps": "11.1.0",
+ "MapboxCommon": "24.1.0",
"Turf": "2.7.0"
}