From a4869eb63cea6dcecfeda61c2e57249dafe4c091 Mon Sep 17 00:00:00 2001 From: Richard Powell Date: Mon, 20 Nov 2023 06:39:33 -0800 Subject: [PATCH] prep for 0.1.7 --- RELEASE_INSTRUCTIONS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASE_INSTRUCTIONS.md b/RELEASE_INSTRUCTIONS.md index ed7e869..bdea1e0 100644 --- a/RELEASE_INSTRUCTIONS.md +++ b/RELEASE_INSTRUCTIONS.md @@ -21,7 +21,7 @@ docs/src/make_md.py docs/src/docs/ProgrammersGuide.md > docs/ProgrammersGuide.md wxUI uses CMake and Github actions to automate the release process. When you push a tag for the repository, github will build and package the release. -The current version is 0.1.6. In all commands below, substitute that number for `$VER` (meaning when you read `$VER`, type 0.1.6) +The current version can by found by running `git describe --tags --abbrev=0`. You should pick an appropriate incremented version, trying to follow the guidance of [https://semver.org](https://semver.org). In all commands below, substitute that number for `$VERS` (meaning when you read `$VERS`). 1. Prebuild the project to make sure its working @@ -30,8 +30,8 @@ The current version is 0.1.6. In all commands below, substitute that number for 3. Tag the depot ``` -$ git tag -a v0.1.6 -m "wxUI-0.1.6" -$ git push origin v0.1.6 +$ git tag -a $VERS -m "wxUI-$VERS" +$ git push origin $VERS ``` This should trigger the github action, which should publish release notes in Draft form.