diff --git a/.github/workflows/release-rust.yaml b/.github/workflows/release-rust.yaml index 427d670..6521ff4 100644 --- a/.github/workflows/release-rust.yaml +++ b/.github/workflows/release-rust.yaml @@ -20,6 +20,7 @@ jobs: target: ${{ matrix.target }} - name: Release Rust Manifest Crate + if: always() env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_API_TOKEN }} run: | diff --git a/libextism/Cargo.toml b/libextism/Cargo.toml index bcdb2d2..fc373d3 100644 --- a/libextism/Cargo.toml +++ b/libextism/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libextism" -version = "0.5.3" +version = "0.5.4" edition = "2021" authors = ["The Extism Authors", "oss@extism.org"] license = "BSD-3-Clause" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 49d59f8..d6f7e96 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism-runtime" -version = "0.5.3" +version = "0.5.4" edition = "2021" authors = ["The Extism Authors", "oss@extism.org"] license = "BSD-3-Clause" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 1d4de4d..d49defc 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism" -version = "0.5.3" +version = "0.5.4" edition = "2021" authors = ["The Extism Authors", "oss@extism.org"] license = "BSD-3-Clause" @@ -10,7 +10,7 @@ description = "Extism Host SDK for Rust" [dependencies] extism-manifest = { version = "0.5.0", path = "../manifest" } -extism-runtime = { version = "0.5.3", path = "../runtime"} +extism-runtime = { version = "0.5.4", path = "../runtime"} serde_json = "1" log = "0.4" anyhow = "1"