Skip to content

Commit

Permalink
fix: add back the leading v for the release
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Feb 13, 2025
1 parent f018cd9 commit b8e75fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

All notable changes to this project will be documented in this file.

## [6.0.1](https://github.com/voxpupuli/puppetboard/tree/6.0.1) (2025-02-13)
## [v6.0.1](https://github.com/voxpupuli/puppetboard/tree/v6.0.1) (2025-02-13)

[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v6.0.0...6.0.1)
[Full Changelog](https://github.com/voxpupuli/puppetboard/compare/v6.0.0...v6.0.1)

There were some pipeline issues for the 6.0.0, so it's not available on pypi. The 6.0.1 release is almost identical, it just updates some dependencies and switches to poetry (which fixed the CI).

Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ rescue LoadError
# github_changelog_generator is an optional group
else
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = File.readlines('pyproject.toml').find{ |l| l.match(/version/) }.split(' ').last.gsub('"', '')
version = File.readlines('pyproject.toml').find{ |l| l.match(/version/) }.split(' ').last.gsub('"', '')
config.future_release = "v#{version}"
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
config.user = 'voxpupuli'
Expand Down

0 comments on commit b8e75fe

Please sign in to comment.