Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew54068 committed May 19, 2023
1 parent 2525ed3 commit 56899f3
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/portto/blocto-ios-sdk.git",
"state" : {
"revision" : "6c24b03c33076f9d5f17c013483dad040a687467",
"version" : "0.4.2"
"revision" : "1cbecf62ad3655703137aa7141f12664af52142f",
"version" : "0.6.1"
}
},
{
Expand All @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/portto/flow-swift-sdk.git",
"state" : {
"revision" : "b5e4c381def8b166a39496f2a32e184f4d8a17d1",
"version" : "0.4.2"
"revision" : "52448238d0e887af02fc0bdaf50ca76426317289",
"version" : "0.5.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Demo/FCL_Cocoa_Demo/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PODS:
- CNIOLinux (2.40.0)
- CNIOWindows (2.40.0)
- CryptoSwift (1.5.1)
- FCL-SDK (0.4.0):
- FCL-SDK (0.4.1):
- BloctoSDK/Flow (~> 0.5.0)
- SwiftyJSON
- FlowSDK (0.5.0):
Expand Down Expand Up @@ -246,7 +246,7 @@ SPEC CHECKSUMS:
CNIOLinux: 62e3505f50de558c393dc2f273dde71dcce518da
CNIOWindows: 3047f2d8165848a3936a0a755fee27c6b5ee479b
CryptoSwift: c4f2debceb38bf44c80659afe009f71e23e4a082
FCL-SDK: 4029da838c046339cd52fe066edd30fa7acbae54
FCL-SDK: 6798a9415e30e355105285f641e7f10bac093b61
FlowSDK: 08c8b36cdc7b1c0d7017504592e8d13042e71bd0
gRPC-Swiftp: 1f5a05ce5b544bff3dce93223e72829daac26113
Logging: beeb016c9c80cf77042d62e83495816847ef108b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/portto/flow-swift-sdk.git",
"state" : {
"revision" : "b5e4c381def8b166a39496f2a32e184f4d8a17d1",
"version" : "0.4.2"
"revision" : "52448238d0e887af02fc0bdaf50ca76426317289",
"version" : "0.5.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions FCL-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FCL-SDK'
s.version = '0.4.0'
s.version = '0.4.1'
s.summary = 'Flow Client Library Swift version.'

s.homepage = 'https://github.com/portto/fcl-swift'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '13.0'

s.source_files = "Sources/**/*"
s.dependency "BloctoSDK/Flow", "~> 0.5.0"
s.dependency "BloctoSDK/Flow", "~> 0.6.1"
s.dependency "SwiftyJSON"

end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/portto/flow-swift-sdk.git", .upToNextMajor(from: "0.4.0")),
.package(url: "https://github.com/portto/flow-swift-sdk.git", .upToNextMajor(from: "0.5.0")),
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "4.0.0"),
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.6.1")),
],
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ This repo is inspired by [fcl-js](https://github.com/onflow/fcl-js) and [fcl-swi
FCL-SDK is available through [CocoaPods](https://cocoapods.org). You can include specific subspec to install, simply add the following line to your Podfile:

```ruby
pod 'FCL-SDK', '~> 0.4.0'
pod 'FCL-SDK', '~> 0.4.1'
```

### Swift Package Manager


```swift
.package(url: "https://github.com/portto/fcl-swift.git", .upToNextMinor(from: "0.4.0"))
.package(url: "https://github.com/portto/fcl-swift.git", .upToNextMinor(from: "0.4.1"))
```

Here's an example PackageDescription:
Expand All @@ -51,7 +51,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/portto/fcl-swift.git", .upToNextMinor(from: "0.4.0"))
.package(url: "https://github.com/portto/fcl-swift.git", .upToNextMinor(from: "0.4.1"))
],
targets: [
.target(
Expand Down

0 comments on commit 56899f3

Please sign in to comment.