commit 780a06c0012e1a271696fd57a32b8f3d28baddc4 parent e163eb0e9cd9e2451ca7b5e1e639ed69db50ecab Author: Martin Ashby <martin@ashbysoft.com> Date: Tue, 28 May 2024 20:26:35 +0100 Add RELEASE_NOTES.md Update release script for 0.2.0 Diffstat:
A | RELEASE_NOTES.md | | | 8 | ++++++++ |
M | release.sh | | | 2 | +- |
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +# 0.2.0 + +Added the `--list` option to quickly see what versions are already downloaded and installed. + +# 0.1.0 + +Initial release. +\ No newline at end of file diff --git a/release.sh b/release.sh @@ -2,7 +2,7 @@ set -e -VERSION="v0.1.0-SNAPSHOT" +VERSION="v0.2.0" git tag -a "${VERSION}" -m "Release ${VERSION}" git push origin "${VERSION}"