From e0170d22b59fc016a58ebb48bfd7a28bdba922ae Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 31 Oct 2017 15:08:04 -0400 Subject: [PATCH] Update release script for introduction.md (#400) Updates the release script to replace the version in introduction.md --- scripts/release.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/release.sh b/scripts/release.sh index 075617eab..352edcdfc 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -86,6 +86,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 }