From 0dd04f71470f34c4c024a2a3a37aa334279aa3d9 Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Sun, 15 Sep 2024 15:47:41 +0200 Subject: [PATCH] release: 0.6 --- .github/RELEASE.md | 9 +++++++++ CHANGELOG.md | 4 ++-- create-pr | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 .github/RELEASE.md diff --git a/.github/RELEASE.md b/.github/RELEASE.md new file mode 100644 index 0000000..acf7451 --- /dev/null +++ b/.github/RELEASE.md @@ -0,0 +1,9 @@ +# Release + +This is a guide to know the steps to create a new release. + +1. Update the version in [CREATE_PR_VERSION](../create-pr) +1. Update the version in [CHANGELOG.md](../CHANGELOG.md) +1. Build the project `./build.sh bin` - This generates `bin/create-pr` & `bin/checksum` +1. Create a [new release](https://github.com/Chemaclass/create-pr/releases/new) from GitHub +1. Attach `bin/create-pr` and `bin/checksum` to the release diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c05787..e646282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.6](https://github.com/Chemaclass/create-pr/compare/0.15.0...0.16.0) - 2024-09-15 +## [0.6](https://github.com/Chemaclass/create-pr/compare/0.5...0.6) - 2024-09-15 - Fix additional single quotes on PR_TITLE_TEMPLATE - Improve feedback when given wrong PR template @@ -9,7 +9,7 @@ - Rename build executable script to `create-pr` - Allow passing extra arguments to the `gh` or `glab` tools -## [0.5](https://github.com/Chemaclass/create-pr/compare/0.15.0...0.16.0) - 2024-09-09 +## [0.5](https://github.com/Chemaclass/create-pr/compare/0.4...0.5) - 2024-09-09 - Support ticket link with number - Remove ticket number from PR title when there is no ticket key diff --git a/create-pr b/create-pr index 9b9ca26..9fb1f6c 100755 --- a/create-pr +++ b/create-pr @@ -2,7 +2,7 @@ set -euo pipefail # shellcheck disable=SC2034 -declare -r CREATE_PR_VERSION="0.5.0" +declare -r CREATE_PR_VERSION="0.6.0" CREATE_PR_ROOT_DIR="$(dirname "${BASH_SOURCE[0]}")" export CREATE_PR_ROOT_DIR