Skip to content

Commit

Permalink
Bump breez-sdk snippet dependency to 0.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 committed Jan 20, 2024
1 parent 89ab58f commit 2f346df
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 18 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 || '0.2.10' }}
package-version: '0.2.10'
sdk-ref: ${{ inputs.sdk-ref || '0.2.12' }}
package-version: '0.2.12'
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.2.10"
version: "0.2.12"
build:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion snippets/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module main

go 1.19

require github.com/breez/breez-sdk-go v0.2.10
require github.com/breez/breez-sdk-go v0.2.12

replace github.com/breez/breez-sdk-go => ./packages/breez-sdk-go
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.2.10")
implementation("technology.breez:breez-sdk-kmp:0.2.12")
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions snippets/react-native/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -714,10 +714,10 @@
"@babel/helper-validator-identifier" "^7.22.20"
to-fast-properties "^2.0.0"

"@breeztech/[email protected].10":
version "0.2.10"
resolved "https://registry.yarnpkg.com/@breeztech/react-native-breez-sdk/-/react-native-breez-sdk-0.2.10.tgz#072b00f57028b5276c600a462cbcaac93d3dee22"
integrity sha512-81wtbkKGxhDaIweIQkD+LLDUL7WTtbI3qEb9vx4Itiu1hGzM8Q2RlYNF5R1jh2m4wdYKUKMWSBd3O4VRnywf1Q==
"@breeztech/[email protected].12":
version "0.2.12"
resolved "https://registry.yarnpkg.com/@breeztech/react-native-breez-sdk/-/react-native-breez-sdk-0.2.12.tgz#6cc7360eea8f91a8945edb2ab413ac20913e7e8d"
integrity sha512-aNWvZDaRbtOjbIQVhfzix1hTy1SPPxIUtsy9+O7hiQDJKMLQFu0931lSB9W4X5GhSRR6PGgctkvNDR1B0uao8g==

"@esbuild/[email protected]":
version "0.18.20"
Expand Down
10 changes: 6 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", tag = "0.2.10" }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.2.12" }
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" : "74402afba8218ff84a0f32d1bc0d4ddc7698f576",
"version" : "0.2.10"
"revision" : "0a88fb63a3fb60da9f35e10228205178e3bd9a94",
"version" : "0.2.12"
}
},
{
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(.v12)],
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.2.10")
.package(url: "https://github.com/breez/breez-sdk-swift", from:"0.2.12")
],
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.2.10" }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.2.12" }
```

## Flutter/Dart
Expand Down

0 comments on commit 2f346df

Please sign in to comment.