diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index a44cbf9..7f88aa0 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -10,7 +10,7 @@ jobs: name: Validate version uses: ./.github/workflows/validate-current-version.yml with: - VUH_VERSION: 'v2.5.0' + VUH_VERSION: 'v2.9.1' quality-assurance: name: Quality Assurance diff --git a/.github/workflows/ci-push.yml b/.github/workflows/ci-push.yml index cc142a1..5c0f5fb 100644 --- a/.github/workflows/ci-push.yml +++ b/.github/workflows/ci-push.yml @@ -15,6 +15,6 @@ jobs: name: Release generation uses: ./.github/workflows/release-notes-generation.yml with: - VUH_VERSION: 'v2.5.0' - CHANGELOG_GENERATOR_VERSION: 'v1.0.2' + VUH_VERSION: 'v2.9.1' + CHANGELOG_GENERATOR_VERSION: 'v1.0.3' needs: quality-assurance diff --git a/gen_release_notes.sh b/gen_release_notes.sh index 416bd04..a97218b 100755 --- a/gen_release_notes.sh +++ b/gen_release_notes.sh @@ -53,7 +53,7 @@ # Written by Shishkin Sergey # Current generator version -RELEASE_NOTES_GENERATOR_VERSION='1.0.3' +RELEASE_NOTES_GENERATOR_VERSION='1.0.4' # all conventional commit types (Please don't modify!) CONVENTIONAL_COMMIT_TYPES=('build' 'ci' 'chore' 'docs' 'feat' 'fix' 'pref' 'refactor' 'revert' 'style' 'test') @@ -124,7 +124,7 @@ function _show_updated_message() { function _show_invalid_usage_error_message() { message=$1 _show_error_message "$message" - echo 'Use "gen-release-notes --help" to see available commands and options information' + echo "Use '$APP_NAME --help' to see available commands and options information" } function _exit_if_using_multiple_commands() { @@ -324,7 +324,7 @@ function get_release_notes() { } function show_generator_version() { - echo "gen-release-notes version: $RELEASE_NOTES_GENERATOR_VERSION" + echo "$APP_NAME version: $RELEASE_NOTES_GENERATOR_VERSION" } function show_help() {