mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-16 13:42:05 +00:00
Add script to bump version numbers.
This commit is contained in:
parent
9cebab5037
commit
61a998f227
14
scripts/bump_version.sh
Executable file
14
scripts/bump_version.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
#
|
||||
# Bumps the version number from <current> to <next> on all libraries.
|
||||
#
|
||||
|
||||
if [ -z ${1} ] || [ -z ${2} ]; then
|
||||
echo "Usage: $0 <current> <next>"
|
||||
echo "Example: $0 0.1.1 0.1.2"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
find . -name "*.toml" | xargs sed -i.bak "s/${1}/${2}/g"
|
||||
find . -name "*.bak" | xargs rm
|
Loading…
Reference in New Issue
Block a user