diff --git a/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved
index dea61d0bb286..41de4254ba00 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" : "f30a28d75448093c1484708fa84d02ddaa474677",
- "version" : "24.4.0-beta.3"
+ "revision" : "65a78f0a608134b9410dad830815ecf9d52d21de",
+ "version" : "24.4.0-rc.1"
}
},
{
@@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
"state" : {
- "revision" : "49d8fa95320f1144e4bfb01048a31b7dbf3ff883",
- "version" : "11.4.0-beta.2"
+ "revision" : "c11c847c7772551729b27f064f12cdf087f48cc8",
+ "version" : "11.4.0-rc.1"
}
},
{
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b902886126f4..f29418493d0f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,9 +4,13 @@ Mapbox welcomes participation and contributions from everyone.
## main
-* Added camera(for:) deprecation for several methods. Added an `CameraForExample` camera(for:) usage
+* Added camera(for:) deprecation for several methods. Added `CameraForExample` showcasing camera(for:) usage
+
+## 11.4.0-rc.1 - 8 May, 2024
+
* Expose experimental `RasterParticleLayer` which is suitable for displaying precipitation or wind on the map
* Expose the list of added `ViewAnnotation`
+* Bump core maps version to 11.4.0-rc.1 and common sdk to 24.4.0-rc.1.
## 11.4.0-beta.3 - 6 May, 2024
diff --git a/LICENSE.md b/LICENSE.md
index 5165283efe43..e73ee7aca942 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
## License
-Mapbox Maps for iOS version 11.4.0-beta.3
+Mapbox Maps for iOS version 11.4.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.4.0-beta.2,Mapbox ToS,Mapbox,https://www.mapbox.com/
+### MapboxCoreMaps,11.4.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
```
Mapbox Core Maps version 10.0
diff --git a/MapboxMaps.podspec b/MapboxMaps.podspec
index a3f9fb680a36..c6c531086012 100644
--- a/MapboxMaps.podspec
+++ b/MapboxMaps.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|
- maps_version = '11.4.0-beta.3'
+ maps_version = '11.4.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.4.0-SNAPSHOT.0507T1010Z.1ee8730'
- m.dependency 'MapboxCommon', '24.4.0-beta.3'
+ m.dependency 'MapboxCoreMaps', '11.4.0-rc.1'
+ m.dependency 'MapboxCommon', '24.4.0-rc.1'
m.dependency 'Turf', '2.8.0'
end
diff --git a/Package.resolved b/Package.resolved
index 1c5b75af4f0a..fe00f124b5e9 100644
--- a/Package.resolved
+++ b/Package.resolved
@@ -5,8 +5,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-common-ios.git",
"state" : {
- "revision" : "f30a28d75448093c1484708fa84d02ddaa474677",
- "version" : "24.4.0-beta.3"
+ "revision" : "65a78f0a608134b9410dad830815ecf9d52d21de",
+ "version" : "24.4.0-rc.1"
+ }
+ },
+ {
+ "identity" : "mapbox-core-maps-ios",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
+ "state" : {
+ "revision" : "c11c847c7772551729b27f064f12cdf087f48cc8",
+ "version" : "11.4.0-rc.1"
}
},
{
diff --git a/Package.swift b/Package.swift
index 3d049d292bba..d523ea098474 100644
--- a/Package.swift
+++ b/Package.swift
@@ -4,8 +4,8 @@
import PackageDescription
import Foundation
-let coreMaps = MapsDependency.coreMaps(version: "11.4.0-SNAPSHOT.0507T1010Z.1ee8730", checksum: "597bc3a03c9b8798f091caae1ac59842b8c61d848f33cab2f220c76eb636fae3")
-let common = MapsDependency.common(version: "24.4.0-beta.3")
+let coreMaps = MapsDependency.coreMaps(version: "11.4.0-rc.1")
+let common = MapsDependency.common(version: "24.4.0-rc.1")
let mapboxMapsPath: String? = nil
diff --git a/Sources/MapboxMaps/Info.plist b/Sources/MapboxMaps/Info.plist
index 20f4856073a1..69f9e9290f4f 100644
--- a/Sources/MapboxMaps/Info.plist
+++ b/Sources/MapboxMaps/Info.plist
@@ -17,6 +17,6 @@
CFBundleShortVersionString
11.4.0
CFBundleVersion
- 122
+ 123
diff --git a/Sources/MapboxMaps/MapboxMaps.json b/Sources/MapboxMaps/MapboxMaps.json
index 38db6f222848..7e137539423b 100644
--- a/Sources/MapboxMaps/MapboxMaps.json
+++ b/Sources/MapboxMaps/MapboxMaps.json
@@ -1,3 +1,3 @@
{
- "version" : "11.4.0-beta.3"
+ "version" : "11.4.0-rc.1"
}
diff --git a/scripts/release/packager/versions.json b/scripts/release/packager/versions.json
index 3f9716ffc9a3..96ef2d90e5a0 100644
--- a/scripts/release/packager/versions.json
+++ b/scripts/release/packager/versions.json
@@ -1,5 +1,5 @@
{
- "MapboxCoreMaps": "11.4.0-SNAPSHOT.0507T1010Z.1ee8730",
- "MapboxCommon": "24.4.0-beta.3",
+ "MapboxCoreMaps": "11.4.0-rc.1",
+ "MapboxCommon": "24.4.0-rc.1",
"Turf": "2.8.0"
}