From 73b760970ec30037b4714de24e94c5ac7075936b Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 10 Oct 2017 15:02:16 -0400 Subject: [PATCH] Update version number in introduction.md Updates the version number in introduction.md when doing a release --- script/release.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/release.sh b/script/release.sh index a1df1370..71fd7424 100755 --- a/script/release.sh +++ b/script/release.sh @@ -100,6 +100,9 @@ replaceversion() { echo "Replaced version in docs/installation.md" sed -i "s/$1/$2/g" docs/installation.md + echo "Replaced version in docs/introduction.md" + sed -i "s/$1/$2/g" docs/introduction.md + echo "Replaced version in build/VERSION" sed -i "s/$1/$2/g" build/VERSION }