dev-release.txt: Use $version shell variable in invocation of version.py

Change I9e9db2d28 introduced a $version shell variable to reduce
copy and pasting when making the release.

Move the first usage of this variable up to where the version.py is
invoked to set the version in pom files.

Change-Id: I66ebd02dabab64a23f73958e99aaf5a2b4642a49
This commit is contained in:
David Pursehouse
2017-10-12 09:43:02 +09:00
parent d57bee8107
commit 9cb3fc24b2

View File

@@ -85,13 +85,13 @@ To do this run the `./tools/version.py` script and provide the new
version as parameter, e.g.:
----
./tools/version.py 2.5
version=2.15
./tools/version.py $version
----
Commit the changes and create a signed release tag on the new commit:
----
version=2.15
git tag -s -m "v$version" "v$version"
----