From 2b118f83f5f5af49e3df8e1dece7489f2c330cc0 Mon Sep 17 00:00:00 2001 From: "kody.low" Date: Sat, 20 Apr 2024 11:21:29 -0700 Subject: [PATCH] chore: release 0.3.3 --- .github/workflows/release.yml | 4 ++-- Cargo.lock | 10 +++++----- Cargo.toml | 12 +++++++++--- fedimint-clientd/Cargo.toml | 2 +- multimint/Cargo.toml | 2 +- 5 files changed, 18 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e39ae67..a3e93d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ permissions: on: push: tags: - - '**[0-9]+.[0-9]+.[0-9]+*' + - "**[0-9]+.[0-9]+.[0-9]+*" pull_request: jobs: @@ -124,7 +124,7 @@ jobs: - name: Build artifacts run: | # Actually do builds and make zips and whatnot - cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json + RUSTFLAGS="--cfg tokio_unstable" cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json echo "cargo dist ran successfully" - id: cargo-dist name: Post-build diff --git a/Cargo.lock b/Cargo.lock index f47145e..fe7e119 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1002,7 +1002,7 @@ dependencies = [ [[package]] name = "fedimint-clientd" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "async-utility", @@ -1026,7 +1026,7 @@ dependencies = [ "lazy_static", "lightning-invoice", "lnurl-rs", - "multimint 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "multimint 0.3.2", "reqwest 0.12.3", "serde", "serde_json", @@ -2390,6 +2390,8 @@ dependencies = [ [[package]] name = "multimint" version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e09006ccf96f467878dd322f159a5597b53455e6693992b75b18fcedcf53913" dependencies = [ "anyhow", "fedimint-client", @@ -2409,9 +2411,7 @@ dependencies = [ [[package]] name = "multimint" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e09006ccf96f467878dd322f159a5597b53455e6693992b75b18fcedcf53913" +version = "0.3.3" dependencies = [ "anyhow", "fedimint-client", diff --git a/Cargo.toml b/Cargo.toml index da2bd02..e208ae7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [workspace] members = ["multimint", "fedimint-clientd"] resolver = "2" -version = "0.3.1" +version = "0.3.3" [workspace.package] -version = "0.3.1" +version = "0.3.3" # Config for 'cargo dist' [workspace.metadata.dist] @@ -15,7 +15,13 @@ ci = ["github"] # The installers to generate for each app installers = ["shell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] +targets = [ + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + "x86_64-pc-windows-msvc", +] # Publish jobs to run in CI pr-run-mode = "plan" # Whether to install an updater program diff --git a/fedimint-clientd/Cargo.toml b/fedimint-clientd/Cargo.toml index 996be41..ad08a18 100644 --- a/fedimint-clientd/Cargo.toml +++ b/fedimint-clientd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fedimint-clientd" -version = "0.3.2" +version = "0.3.3" edition = "2021" description = "A fedimint client daemon for server side applications to hold, use, and manage Bitcoin" repository = "https://github.com/fedimint/fedimint-clientd" diff --git a/multimint/Cargo.toml b/multimint/Cargo.toml index 4dc8120..4e484cd 100644 --- a/multimint/Cargo.toml +++ b/multimint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multimint" -version = "0.3.2" +version = "0.3.3" edition = "2021" description = "A library for managing fedimint clients across multiple federations" license = "MIT"