add convenience script to bump dependency version
This commit is contained in:
parent
30918c355b
commit
4ebd8af96f
1 changed files with 11 additions and 0 deletions
11
release/bump-dependency.sh
Executable file
11
release/bump-dependency.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
# A helper script to bump version dependencies of a crate to a particular version. It does
|
||||
# not bump the version of the crate itself, only its entries in dependency lists.
|
||||
#
|
||||
# Usage (from the embassy repo folder): ./release/bump-dependency.sh embassy-time 0.4.0
|
||||
#
|
||||
# As a sanity check, after running this script, grep for old versions.
|
||||
#
|
||||
CRATE=$1
|
||||
TARGET_VER=$2
|
||||
find . -name "Cargo.toml" | xargs sed -rie "s/($CRATE = \{.*version = \")[0-9]+.[0-9]+.?[0-9]*(\".*)/\1$TARGET_VER\2/g"
|
Loading…
Reference in a new issue