Skip to content

Commit

Permalink
Dump version 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcmz committed Dec 6, 2022
1 parent 0adf777 commit 506f2ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"repositoryURL": "https://github.com/outblock/flow-swift.git",
"state": {
"branch": null,
"revision": "ae293db37174d2b8f1c5a5f508ae3b6429de78d5",
"version": "0.3.0"
"revision": "e1721bea71d8a27e209398f5a740ef02f6c6c920",
"version": "0.3.1"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ SDKs are open source, and you can use them according to the licence.
This is a Swift Package, and can be installed via Xcode with the URL of this repository:

```swift
.package(name: "FCL", url: "https://github.com/outblock/fcl-swift.git", from: "0.0.8")
.package(name: "FCL", url: "https://github.com/outblock/fcl-swift.git", from: "0.0.9")
```

## Config
Expand Down
2 changes: 1 addition & 1 deletion Sources/FCL.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class FCL: NSObject, ObservableObject {

private var providers: [FCL.Provider] = [.dapper, .lilico, .blocto]

public let version = "@outblock/[email protected].8"
public let version = "@outblock/[email protected].9"

@Published
public var currentUser: User?
Expand Down
4 changes: 2 additions & 2 deletions Sources/Provider/HTTP/HTTPProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ extension FCL {
client.delegate = self
}

func execService<T>(url: URL, method _: FCL.ServiceType, request _: T?) async throws -> FCL.Response where T: Encodable {
guard let request else {
func execService<T>(url: URL, method _: FCL.ServiceType, request: T?) async throws -> FCL.Response where T: Encodable {
guard let request = request else {
return try await client.execHttpPost(url: url)
}

Expand Down

0 comments on commit 506f2ea

Please sign in to comment.