diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f4ae4bf..05c9bd1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,7 @@ jobs: # (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload. # Note that glob pattern is not supported yet. bin: iwe,iwes - archive: iwe-$tag-$target + archive: $tag-$target # (optional) Target triple, default is host triple. target: ${{ matrix.target }} # (required) GitHub token for uploading assets to GitHub Releases. diff --git a/Cargo.lock b/Cargo.lock index 6874d05..309583d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -605,7 +605,7 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "iwe" -version = "0.0.13" +version = "0.0.14" dependencies = [ "clap", "env_logger", @@ -626,7 +626,7 @@ dependencies = [ [[package]] name = "iwes" -version = "0.0.13" +version = "0.0.14" dependencies = [ "anyhow", "assert-json-diff", @@ -672,7 +672,7 @@ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "liwe" -version = "0.0.13" +version = "0.0.14" dependencies = [ "env_logger", "futures", diff --git a/Cargo.toml b/Cargo.toml index 2bc2ec0..9d87b7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,10 +8,10 @@ license = "Apache-2.0" edition = "2021" rust-version = "1.82" repository = "https://github.com/iwe-org/iwe" -version = "0.0.13" +version = "0.0.14" [workspace.dependencies] -liwe = { path = "./crates/liwe", version = "0.0.13" } +liwe = { path = "./crates/liwe", version = "0.0.14" } anyhow = "1.0.41" clap = { version = "4.0", features = ["derive"] } crossbeam-channel = "0.5.8"