Skip to content

Commit

Permalink
Update SoulverCore framework (v1.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcohan committed Feb 24, 2021
1 parent 659f47b commit 2377064
Show file tree
Hide file tree
Showing 55 changed files with 3,029 additions and 1,275 deletions.
4 changes: 2 additions & 2 deletions MacSample/MacSample/SoulverCoreExamples.swift
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ class SoulverCoreExamples {

customization.featureFlags.seeksFutureDate = true

let calculator = Calculator(customization: customization)
let dateSeekingCalculator = Calculator(customization: customization)

// 11th of March (or 3rd of November in the US), not 11 divided by 3

if let date = calculator.dateFor("11/03")?.date {
if let date = dateSeekingCalculator.dateFor("11/03")?.date {

print("Found a date \(DateFormatter.localizedString(from: date, dateStyle: .medium, timeStyle: .none))")

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/1.2.1/SoulverCore.xcframework.zip",
checksum: "564cf25c293b0cc778525d94acf2b8119f60fab707f5ce614b1f5406e17957f0"),
url: "https://github.com/soulverteam/SoulverCore/releases/download/1.3.0/SoulverCore.xcframework.zip",
checksum: "ba50b37c78f84b359c94ba541ca0b7aa4d46381dd45181f1ee099b867c3e7464"),
]
)
14 changes: 7 additions & 7 deletions SoulverCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,15 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -34,19 +31,22 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -57,7 +57,7 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 2377064

Please sign in to comment.