release.sh: fix up remaining context-free regexes #1340

This commit is contained in:
nick black 2021-02-08 18:32:14 -05:00 committed by Nick Black
parent 3dd543d72b
commit 23c6b13ecf

View File

@ -27,8 +27,9 @@ for i in doc/man/man*/*.md cffi/notcurses-*.md ; do
sed -i -e "s/% v$OLDVERSION/% v$VERSION/" "$i"
done
sed -i -e "s/(v$OLDVERSION)/(v$VERSION)/" doc/man/index.html
#BUMP="cffi/setup.py rust/Cargo.toml rust/build/build.rs"
exit
sed -i -e "s/version=\"$OLDVERSION\"/version=\"$VERSION\"/" cffi/setup.py
sed -i -e "s/^version = \"$OLDVERSION\"$/version = \"$VERSION\"/" rust/Cargo.toml
sed -i -e "s/atleast_version(\"$OLDVERSION\")/atleast_version(\"$VERSION\")/" rust/build/build.rs
BUILDDIR="build-$VERSION"