Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions gen_release_notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# Written by Shishkin Sergey <[email protected]>

# 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')
Expand Down Expand Up @@ -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() {
Expand Down Expand Up @@ -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() {
Expand Down