From e6500baae77ffae604400750d871fcac5b52ca05 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Wed, 6 Sep 2023 10:18:08 -0400 Subject: [PATCH 1/2] chore: update library version to 0.30.0 --- Cargo.lock | 2 +- bdk-ffi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39a8640b..d42d0cd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,7 +194,7 @@ dependencies = [ [[package]] name = "bdk-ffi" -version = "0.29.0" +version = "0.30.0" dependencies = [ "assert_matches", "bdk", diff --git a/bdk-ffi/Cargo.toml b/bdk-ffi/Cargo.toml index 429c8bbf..2fceb727 100644 --- a/bdk-ffi/Cargo.toml +++ b/bdk-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-ffi" -version = "0.29.0" +version = "0.30.0" authors = ["Steve Myers ", "Sudarsan Balaji "] edition = "2018" license = "MIT OR Apache-2.0" From b59327e5ea2012c446e4a7ba7ec53df024a2c27c Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Wed, 6 Sep 2023 10:40:29 -0400 Subject: [PATCH 2/2] chore: pin flate2 to 1.0.26 when building with 1.61 --- .github/workflows/cont_integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 09dd49c8..7ddebf02 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -51,6 +51,7 @@ jobs: run: | cargo update -p hashlink --precise "0.8.1" cargo update -p tokio --precise "1.29.1" + cargo update -p flate2 --precise "1.0.26" - name: Build run: cargo build