diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 7808f89..5a6061b 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -29,7 +29,7 @@ jobs: - name: Set Cargo.toml version run: | - sed -i "s/version = .*/version = \"${{ steps.version.outputs.version }}\"/g" Cargo.toml + sed -i "s/^version = .*/version = \"${{ steps.version.outputs.version }}\"/g" Cargo.toml # github actions email from here: https://github.community/t/github-actions-bot-email-address/17204 - name: Commit changes run: | diff --git a/Cargo.toml b/Cargo.toml index 730dfa0..b057fa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,11 +16,11 @@ path = "src/bin.rs" [dependencies] clap = "2" addr2line = "0.16.0" -object = { version = "1.3.2" +object = { version = "0.26", default-features = false, features = ["read"], optional = true } typed-arena = "2" regex = "1.5.4" colored = "2" -wasm-bindgen = { version = "1.3.2" +wasm-bindgen = { version = "0.2" } js-sys = "0.3" [profile.release]