Skip to content

Commit

Permalink
[Release] Prepare v11.4.0 release (#2159)
Browse files Browse the repository at this point in the history
Co-authored-by: Roman Laitarenko <[email protected]>
  • Loading branch information
maios and evil159 committed May 22, 2024
1 parent d85e5b8 commit 84ea7b4
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 21 deletions.
8 changes: 4 additions & 4 deletions Apps/Apps.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-common-ios.git",
"state" : {
"revision" : "364c2b714043a4c505a2b4f821dab8c04def11db",
"version" : "24.4.0-rc.2"
"revision" : "9c04997ed32c5b2506eb704f9f7a16367b5dcc64",
"version" : "24.4.0"
}
},
{
"identity" : "mapbox-core-maps-ios",
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
"state" : {
"revision" : "8765d8564076a795f3f8bef00f7bdb7bcffb7ba5",
"version" : "11.4.0-rc.2"
"revision" : "c7897628028afb2c008d50c5d5d4054768c99340",
"version" : "11.4.0"
}
},
{
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Mapbox welcomes participation and contributions from everyone.

## main

## 11.4.0 - 22 May, 2024

* Live performance metrics collection. Mapbox Maps SDK v11.4.0 collects certain performance and feature usage counters so we can better benchmark the MapboxMaps library and invest in its performance. The performance counters have been carefully designed so that user-level metrics and identifiers are not collected.
* Bump core maps version to 11.4.0 and common sdk to 24.0.0

## 11.4.0-rc.2 - 15 May, 2024

* Bump core maps version to 11.4.0-rc.2 and common sdk to 24.4.0-rc.2
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions MapboxMaps.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|

maps_version = '11.4.0-rc.2'
maps_version = '11.4.0'

m.name = 'MapboxMaps'
m.version = maps_version
Expand All @@ -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-rc.2'
m.dependency 'MapboxCommon', '24.4.0-rc.2'
m.dependency 'MapboxCoreMaps', '11.4.0'
m.dependency 'MapboxCommon', '24.4.0'
m.dependency 'Turf', '2.8.0'

end
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-common-ios.git",
"state" : {
"revision" : "364c2b714043a4c505a2b4f821dab8c04def11db",
"version" : "24.4.0-rc.2"
"revision" : "9c04997ed32c5b2506eb704f9f7a16367b5dcc64",
"version" : "24.4.0"
}
},
{
"identity" : "mapbox-core-maps-ios",
"kind" : "remoteSourceControl",
"location" : "https://github.com/mapbox/mapbox-core-maps-ios.git",
"state" : {
"revision" : "8765d8564076a795f3f8bef00f7bdb7bcffb7ba5",
"version" : "11.4.0-rc.2"
"revision" : "c7897628028afb2c008d50c5d5d4054768c99340",
"version" : "11.4.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import PackageDescription
import Foundation

let coreMaps = MapsDependency.coreMaps(version: "11.4.0-rc.2")
let common = MapsDependency.common(version: "24.4.0-rc.2")
let coreMaps = MapsDependency.coreMaps(version: "11.4.0")
let common = MapsDependency.common(version: "24.4.0")

let mapboxMapsPath: String? = nil

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ final class MapContentReconciler {

/// Increment telemetry counter once per StyleDSL usage on the single style
func triggerTelemetryIfNeeded(for node: MapContentNode) {
guard sendTelemetryOncePerStyle.continueOnce(), !node.childrenIsEmpty else { return }
Log.info(forMessage: "triggerTelemetryIfNeeded")
guard !node.childrenIsEmpty, sendTelemetryOncePerStyle.continueOnce() else { return }
sendTelemetry(\.styleDSL)
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/MapboxMaps/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>11.4.0</string>
<key>CFBundleVersion</key>
<string>124</string>
<string>125</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Sources/MapboxMaps/MapboxMaps.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version" : "11.4.0-rc.2"
"version" : "11.4.0"
}
4 changes: 2 additions & 2 deletions scripts/release/packager/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"MapboxCoreMaps": "11.4.0-rc.2",
"MapboxCommon": "24.4.0-rc.2",
"MapboxCoreMaps": "11.4.0",
"MapboxCommon": "24.4.0",
"Turf": "2.8.0"
}

0 comments on commit 84ea7b4

Please sign in to comment.