Skip to content

Commit

Permalink
Update SoulverCore framework (v2.7.1)
Browse files Browse the repository at this point in the history
Compiled with Xcode 16.0 (16A242d) and Swift 6.0 on macOS 15.0.1 (24A348)
  • Loading branch information
zcohan committed Oct 15, 2024
1 parent 08bbbde commit 79d3aca
Show file tree
Hide file tree
Showing 2,572 changed files with 43,009 additions and 36,476 deletions.
2 changes: 1 addition & 1 deletion MacSample/MacSample/StringParsingExamples.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public struct StringParsingExamples {

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

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

let formatter = MeasurementFormatter()
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
targets: [
.binaryTarget(
name: "SoulverCore",
url: "https://github.com/soulverteam/SoulverCore/releases/download/2.7.0/SoulverCore.xcframework.zip",
checksum: "4691d80829213035362697fa09f3b429a2f7d9d84989456399d5416e941f46ce"),
url: "https://github.com/soulverteam/SoulverCore/releases/download/2.7.1/SoulverCore.xcframework.zip",
checksum: "c875356ccafc515d007ae89ab9947a03e6774080941b61a98a7084c5a141f079"),
]
)
20 changes: 10 additions & 10 deletions SoulverCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<array>
<dict>
<key>BinaryPath</key>
<string>SoulverCore.framework/SoulverCore</string>
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -19,13 +19,13 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -34,9 +34,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>macos</string>
</dict>
<dict>
<key>BinaryPath</key>
Expand All @@ -54,9 +52,9 @@
</dict>
<dict>
<key>BinaryPath</key>
<string>SoulverCore.framework/Versions/A/SoulverCore</string>
<string>SoulverCore.framework/SoulverCore</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -65,7 +63,9 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified SoulverCore.xcframework/_CodeSignature/CodeDirectory
Binary file not shown.
Binary file modified SoulverCore.xcframework/_CodeSignature/CodeRequirements-1
Binary file not shown.
Loading

0 comments on commit 79d3aca

Please sign in to comment.