Skip to content

Commit

Permalink
chore: release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 20, 2024
1 parent b5d358e commit 2b118f8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions:
on:
push:
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
- "**[0-9]+.[0-9]+.[0-9]+*"
pull_request:

jobs:
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

12 changes: 9 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fedimint-clientd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion multimint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 2b118f8

Please sign in to comment.