Skip to content

Commit 79d3aca

Browse files
committed
Update SoulverCore framework (v2.7.1)
Compiled with Xcode 16.0 (16A242d) and Swift 6.0 on macOS 15.0.1 (24A348)
1 parent 08bbbde commit 79d3aca

File tree

2,572 files changed

+43009
-36476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,572 files changed

+43009
-36476
lines changed

MacSample/MacSample/StringParsingExamples.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public struct StringParsingExamples {
6969

7070
let convertedTemperatures = ["25 °C", "12.5 degrees celsius", "-22.6 C"].replacingAll(.temperature) { celsius in
7171

72-
let measurementC: Measurement<UnitTemperature> = Measurement(value: celsius.value.doubleValue, unit: .celsius)
72+
let measurementC: Measurement<UnitTemperature> = Measurement(value: (celsius.value as NSDecimalNumber).doubleValue, unit: .celsius)
7373
let measurementF = measurementC.converted(to: .fahrenheit)
7474

7575
let formatter = MeasurementFormatter()

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
targets: [
1313
.binaryTarget(
1414
name: "SoulverCore",
15-
url: "https://github.com/soulverteam/SoulverCore/releases/download/2.7.0/SoulverCore.xcframework.zip",
16-
checksum: "4691d80829213035362697fa09f3b429a2f7d9d84989456399d5416e941f46ce"),
15+
url: "https://github.com/soulverteam/SoulverCore/releases/download/2.7.1/SoulverCore.xcframework.zip",
16+
checksum: "c875356ccafc515d007ae89ab9947a03e6774080941b61a98a7084c5a141f079"),
1717
]
1818
)

SoulverCore.xcframework/Info.plist

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<array>
77
<dict>
88
<key>BinaryPath</key>
9-
<string>SoulverCore.framework/SoulverCore</string>
9+
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64_x86_64-simulator</string>
11+
<string>ios-arm64_x86_64-maccatalyst</string>
1212
<key>LibraryPath</key>
1313
<string>SoulverCore.framework</string>
1414
<key>SupportedArchitectures</key>
@@ -19,13 +19,13 @@
1919
<key>SupportedPlatform</key>
2020
<string>ios</string>
2121
<key>SupportedPlatformVariant</key>
22-
<string>simulator</string>
22+
<string>maccatalyst</string>
2323
</dict>
2424
<dict>
2525
<key>BinaryPath</key>
2626
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
2727
<key>LibraryIdentifier</key>
28-
<string>ios-arm64_x86_64-maccatalyst</string>
28+
<string>macos-arm64_x86_64</string>
2929
<key>LibraryPath</key>
3030
<string>SoulverCore.framework</string>
3131
<key>SupportedArchitectures</key>
@@ -34,9 +34,7 @@
3434
<string>x86_64</string>
3535
</array>
3636
<key>SupportedPlatform</key>
37-
<string>ios</string>
38-
<key>SupportedPlatformVariant</key>
39-
<string>maccatalyst</string>
37+
<string>macos</string>
4038
</dict>
4139
<dict>
4240
<key>BinaryPath</key>
@@ -54,9 +52,9 @@
5452
</dict>
5553
<dict>
5654
<key>BinaryPath</key>
57-
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
55+
<string>SoulverCore.framework/SoulverCore</string>
5856
<key>LibraryIdentifier</key>
59-
<string>macos-arm64_x86_64</string>
57+
<string>ios-arm64_x86_64-simulator</string>
6058
<key>LibraryPath</key>
6159
<string>SoulverCore.framework</string>
6260
<key>SupportedArchitectures</key>
@@ -65,7 +63,9 @@
6563
<string>x86_64</string>
6664
</array>
6765
<key>SupportedPlatform</key>
68-
<string>macos</string>
66+
<string>ios</string>
67+
<key>SupportedPlatformVariant</key>
68+
<string>simulator</string>
6969
</dict>
7070
</array>
7171
<key>CFBundlePackageType</key>
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)