Update bindings workflow in CI to 0.0.105
authorMatt Corallo <git@bluematt.me>
Wed, 2 Mar 2022 03:24:28 +0000 (03:24 +0000)
committerMatt Corallo <git@bluematt.me>
Wed, 2 Mar 2022 05:37:26 +0000 (05:37 +0000)
.github/workflows/build.yml
lightning-c-bindings/Cargo.toml

index 4a42cc3e020318cf22fcd5070b0e1c9e3d3b9e7a..4bb3188aa25fff65eeaa0dfa505f8dbcff39403d 100644 (file)
@@ -32,7 +32,7 @@ jobs:
         run: |
           git clone https://github.com/rust-bitcoin/rust-lightning
           cd rust-lightning
-          git checkout 0.0.104-bindings
+          git checkout 0.0.105-bindings
       - name: Rebuild bindings without std, and check the sample app builds + links
         run: ./genbindings.sh ./rust-lightning false
       - name: Rebuild bindings, and check the sample app builds + links
@@ -83,7 +83,7 @@ jobs:
         run: |
           git clone https://github.com/rust-bitcoin/rust-lightning
           cd rust-lightning
-          git checkout 0.0.104-bindings
+          git checkout 0.0.105-bindings
       - name: Rebuild bindings using Apple clang, and check the sample app builds + links
         run: ./genbindings.sh ./rust-lightning true
       - name: Rebuild bindings using upstream clang, and check the sample app builds + links
index 00fc19b92c51e16f05f303c5349f9d45a3ddfb5c..1dc07eaa4c06302b403fcdf66b491050170178f1 100644 (file)
@@ -22,10 +22,10 @@ std = ["bitcoin/std", "lightning/std", "lightning-invoice/std"]
 bitcoin = { version = "0.27", default-features = false }
 secp256k1 = { version = "0.20.3", features = ["global-context-less-secure"] }
 # Note that the following line is matched by genbindings to update the path
-lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.104-bindings", default-features = false }
-lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.104-bindings", default-features = false }
-lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.104-bindings", default-features = false }
-lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.104-bindings", default-features = false }
+lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.105-bindings", default-features = false }
+lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.105-bindings", default-features = false }
+lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.105-bindings", default-features = false }
+lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "0.0.105-bindings", default-features = false }
 
 core2 = { version = "0.3.0", optional = true, default-features = false }