Skip to content

Commit

Permalink
Build to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeross committed Jul 2, 2024
1 parent 3c98a86 commit 90efe20
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
name: setup
runs-on: ubuntu-latest
outputs:
sdk-ref: ${{ inputs.sdk-ref || 'a9d208a0b8aa074cd6ab0bc490ecd074c704197a' }}
package-version: '0.4.3-rc1'
sdk-ref: ${{ inputs.sdk-ref || '83740c3595ac16b29896c76a2e8790fba0535ab3' }}
package-version: '0.5.0'
steps:
- run: echo "set pre-setup output variables"

Expand Down
2 changes: 1 addition & 1 deletion snippets/dart_snippets/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ packages:
path: "packages/breez-sdk-flutter"
relative: true
source: path
version: "0.4.3-rc1"
version: "0.5.0"
build:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion snippets/kotlin_mpp_lib/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ kotlin {
}
val commonMain by getting {
dependencies {
implementation("technology.breez:breez-sdk-kmp:0.4.3-rc1")
implementation("technology.breez:breez-sdk-kmp:0.5.0")
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions snippets/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion snippets/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
anyhow = "1"
bip39 = { version = "2", features = ["rand"] }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", rev = "a9d208a0b8aa074cd6ab0bc490ecd074c704197a" }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", rev = "83740c3595ac16b29896c76a2e8790fba0535ab3" }
log = "0.4"
tokio = "1.29"
4 changes: 2 additions & 2 deletions snippets/swift/BreezSDKExamples/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/breez/breez-sdk-swift",
"state" : {
"revision" : "f77009b19955f5d5a819aa2decf0e54042ed687f",
"version" : "0.4.3-rc1"
"revision" : "e1f4fe01895f9f5366816740a62ff6f3d03d6806",
"version" : "0.5.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion snippets/swift/BreezSDKExamples/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
platforms: [.macOS(.v13)],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.3"),
.package(url: "https://github.com/breez/breez-sdk-swift", from: "0.4.3-rc1")
.package(url: "https://github.com/breez/breez-sdk-swift", from: "0.5.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand Down
2 changes: 1 addition & 1 deletion src/guide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Check https://github.com/breez/breez-sdk/releases for the latest version.

```toml
[dependencies]
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.4.3-rc1" }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.5.0" }
```

## Flutter/Dart
Expand Down

0 comments on commit 90efe20

Please sign in to comment.