Skip to content

Commit

Permalink
0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ph4r05 committed Jan 19, 2022
1 parent f8312c1 commit 53c0e70
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions BlockfrostSwiftSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.version = '0.0.5'
s.source = { :git => 'git@github.com:blockfrost/blockfrost-swift.git', :tag => '0.0.5' }
s.version = '0.0.6'
s.source = { :git => 'git@github.com:blockfrost/blockfrost-swift.git', :tag => '0.0.6' }
s.authors = 'Blockfrost Swift SDK'
s.license = 'MIT'
s.homepage = 'https://github.com/blockfrost/blockfrost-swift'
Expand Down
2 changes: 1 addition & 1 deletion BlockfrostSwiftSDK/Classes/BuildInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Foundation
public class BuildInfo {
public static let VERSION="0.0.5"
public static let VERSION="0.0.6"
}
2 changes: 1 addition & 1 deletion Example/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let package = Package(
.package(name:"BlockfrostSwiftSDK", path: "../"),

// Requires .product in target.executableTarget.dependencies
//.package(url: "https://github.com/blockfrost/blockfrost-swift.git", from: "0.0.5"),
//.package(url: "https://github.com/blockfrost/blockfrost-swift.git", from: "0.0.6"),

],
targets: [
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
### Swift package manager
```
dependencies: [
.package(url: "https://github.com/blockfrost/blockfrost-swift.git", from: "0.0.5"),
.package(url: "https://github.com/blockfrost/blockfrost-swift.git", from: "0.0.6"),
],
targets: [
Expand All @@ -36,7 +36,7 @@ Run `carthage update`

Cartfile
```
github "blockfrost/blockfrost-swift" ~> 0.0.5
github "blockfrost/blockfrost-swift" ~> 0.0.6
```

### CocoaPods
Expand All @@ -46,12 +46,12 @@ Run `pod install`

Podfile:
```
pod 'BlockfrostSwiftSDK', '~> 0.0.5'
pod 'BlockfrostSwiftSDK', '~> 0.0.6'
```

Or use GitHub, by tag:
```
pod 'BlockfrostSwiftSDK', :git => 'https://github.com/blockfrost/blockfrost-swift.git', :tag => '0.0.5'
pod 'BlockfrostSwiftSDK', :git => 'https://github.com/blockfrost/blockfrost-swift.git', :tag => '0.0.6'
```

or by branch:
Expand Down

0 comments on commit 53c0e70

Please sign in to comment.