Skip to content

Commit 53810ed

Browse files
runnerrunner
authored andcommitted
Created automatic release of prose-core-client 0.12.0.
1 parent d3aa532 commit 53810ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ let package = Package(
1111
.target(name: "ProseCoreFFI", dependencies: ["ProseCoreFFIFFI"]),
1212
.binaryTarget(
1313
name: "ProseCoreFFIFFI",
14-
url: "https://github.com/prose-im/prose-wrapper-swift/releases/download/0.11.0/ProseCoreFFI.xcframework.zip",
15-
checksum: "3513e483989b655f2303290699188f4ed11694348ac9ffb6ca0916422b779bc3"
14+
url: "https://github.com/prose-im/prose-wrapper-swift/releases/download/0.12.0/ProseCoreFFI.xcframework.zip",
15+
checksum: "dcd4d1c4ef69fd19048d9e83162cc28de58b142211fa4418f21bcc62ea2510a5"
1616
),
1717
]
1818
)

Sources/ProseCoreFFI/ProseCoreFFI.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3732,7 +3732,7 @@ public struct FfiConverterTypeUrl: FfiConverter {
37323732
}
37333733

37343734
public static func write(_ value: Url, into buf: inout [UInt8]) {
3735-
let builtinValue = value.path
3735+
let builtinValue = value.absoluteString
37363736
return FfiConverterString.write(builtinValue, into: &buf)
37373737
}
37383738

@@ -3742,7 +3742,7 @@ public struct FfiConverterTypeUrl: FfiConverter {
37423742
}
37433743

37443744
public static func lower(_ value: Url) -> RustBuffer {
3745-
let builtinValue = value.path
3745+
let builtinValue = value.absoluteString
37463746
return FfiConverterString.lower(builtinValue)
37473747
}
37483748
}

0 commit comments

Comments
 (0)