diff --git a/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved index 6e78e8e1e4c7..2ccf6e064b28 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" : "c5ff61ca878f937407276d17137b8bab5a05f632", - "version" : "24.8.0-beta.1" + "revision" : "c9bdf65d6b69256b577ffe0e8274b1e0f5c93346", + "version" : "24.8.0-rc.1" } }, { @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/mapbox/mapbox-core-maps-ios.git", "state" : { - "revision" : "1ce341acc0a5e2d0f0f7c3dedb8553bb22888437", - "version" : "11.8.0-beta.1" + "revision" : "3aa9409d77f5929c3d0b70810d0c3b2ddd1d5d8a", + "version" : "11.8.0-rc.1" } }, { diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7b020ede85..921fadd3ca88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Mapbox welcomes participation and contributions from everyone. ## main +## 11.8.0-rc.1 - 23 October, 2024 + * Fix the bug when MapView would ignore the new bounds size if there are more than a single resizing event in the animation. ## 11.8.0-beta.1 - 14 October, 2024 diff --git a/LICENSE.md b/LICENSE.md index 592fdbc5fcc6..64cef0407b9a 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ ## License -Mapbox Maps for iOS version 11.8.0-beta.1 +Mapbox Maps for iOS version 11.8.0-rc.1 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.8.0-beta.1,Mapbox ToS,Mapbox,https://www.mapbox.com/ +### MapboxCoreMaps,11.8.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/ ``` Mapbox Core Maps version 11.0 diff --git a/MapboxMaps.podspec b/MapboxMaps.podspec index 08399f14e857..fca49d0302f4 100644 --- a/MapboxMaps.podspec +++ b/MapboxMaps.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |m| - maps_version = '11.8.0-beta.1' + maps_version = '11.8.0-rc.1' 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.8.0-beta.1' - m.dependency 'MapboxCommon', '24.8.0-beta.1' + m.dependency 'MapboxCoreMaps', '11.8.0-rc.1' + m.dependency 'MapboxCommon', '24.8.0-rc.1' m.dependency 'Turf', '3.0.0' end diff --git a/Package.resolved b/Package.resolved index 079647cdf2b9..9ce5f8ab573a 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/mapbox/mapbox-common-ios.git", "state" : { - "revision" : "c5ff61ca878f937407276d17137b8bab5a05f632", - "version" : "24.8.0-beta.1" + "revision" : "c9bdf65d6b69256b577ffe0e8274b1e0f5c93346", + "version" : "24.8.0-rc.1" } }, { @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/mapbox/mapbox-core-maps-ios.git", "state" : { - "revision" : "1ce341acc0a5e2d0f0f7c3dedb8553bb22888437", - "version" : "11.8.0-beta.1" + "revision" : "3aa9409d77f5929c3d0b70810d0c3b2ddd1d5d8a", + "version" : "11.8.0-rc.1" } }, { diff --git a/Package.swift b/Package.swift index 99e422654602..79072c816275 100644 --- a/Package.swift +++ b/Package.swift @@ -4,8 +4,8 @@ import PackageDescription import Foundation -let coreMaps = MapsDependency.coreMaps(version: "11.8.0-beta.1") -let common = MapsDependency.common(version: "24.8.0-beta.1") +let coreMaps = MapsDependency.coreMaps(version: "11.8.0-rc.1") +let common = MapsDependency.common(version: "24.8.0-rc.1") let mapboxMapsPath: String? = nil diff --git a/Sources/MapboxMaps/Info.plist b/Sources/MapboxMaps/Info.plist index bb3a9fbec465..f16b5d3a106d 100644 --- a/Sources/MapboxMaps/Info.plist +++ b/Sources/MapboxMaps/Info.plist @@ -17,6 +17,6 @@ CFBundleShortVersionString 11.8.0 CFBundleVersion - 136 + 137 diff --git a/Sources/MapboxMaps/MapboxMaps.json b/Sources/MapboxMaps/MapboxMaps.json index 812d56c3e973..9bd2ce506bfa 100644 --- a/Sources/MapboxMaps/MapboxMaps.json +++ b/Sources/MapboxMaps/MapboxMaps.json @@ -1,3 +1,3 @@ { - "version" : "11.8.0-beta.1" + "version" : "11.8.0-rc.1" } diff --git a/scripts/release/packager/versions.json b/scripts/release/packager/versions.json index 98b517387f03..0318835ffa02 100644 --- a/scripts/release/packager/versions.json +++ b/scripts/release/packager/versions.json @@ -1,5 +1,5 @@ { - "MapboxCoreMaps": "11.8.0-beta.1", - "MapboxCommon": "24.8.0-beta.1", + "MapboxCoreMaps": "11.8.0-rc.1", + "MapboxCommon": "24.8.0-rc.1", "Turf": "3.0.0" }