Skip to content

Commit d922fdd

Browse files
authored
Fix version bumping (#15)
1 parent 0911e90 commit d922fdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Set Cargo.toml version
3131
run: |
32-
sed -i "s/version = .*/version = \"${{ steps.version.outputs.version }}\"/g" Cargo.toml
32+
sed -i "s/^version = .*/version = \"${{ steps.version.outputs.version }}\"/g" Cargo.toml
3333
# github actions email from here: https://github.community/t/github-actions-bot-email-address/17204
3434
- name: Commit changes
3535
run: |

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ path = "src/bin.rs"
1616
[dependencies]
1717
clap = "2"
1818
addr2line = "0.16.0"
19-
object = { version = "1.3.2"
19+
object = { version = "0.26", default-features = false, features = ["read"], optional = true }
2020
typed-arena = "2"
2121
regex = "1.5.4"
2222
colored = "2"
23-
wasm-bindgen = { version = "1.3.2"
23+
wasm-bindgen = { version = "0.2" }
2424
js-sys = "0.3"
2525

2626
[profile.release]

0 commit comments

Comments
 (0)