From f159b94e0013b360ebe1412a86a0615836729afe Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 3 Nov 2023 20:37:33 +0100 Subject: [PATCH] Release 1.0.0 d57bec3f2aeae95288d17b59af83347b4096b08c was incorrectly labeled as the 1.0.0 release but it really was 0.6.0. --- CHANGELOG.md | 9 ++++++++- Rakefile | 2 +- lib/beaker-hiera/version.rb | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee8df0..749eded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.0.0](https://github.com/voxpupuli/beaker-hiera/tree/1.0.0) (2023-11-03) + +[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.6.0...1.0.0) + +**Breaking changes:** + +- Convert to Hiera 5 [\#17](https://github.com/voxpupuli/beaker-hiera/pull/17) ([ekohl](https://github.com/ekohl)) + ## [0.6.0](https://github.com/voxpupuli/beaker-hiera/tree/0.6.0) (2023-05-05) [Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.5.0...0.6.0) @@ -24,7 +32,6 @@ **Merged pull requests:** -- Bump actions/checkout from 2 to 3 [\#23](https://github.com/voxpupuli/beaker-hiera/pull/23) ([dependabot[bot]](https://github.com/apps/dependabot)) - Implement rubocop & fix violations [\#22](https://github.com/voxpupuli/beaker-hiera/pull/22) ([bastelfreak](https://github.com/bastelfreak)) - dependabot: check for github actions and gems [\#21](https://github.com/voxpupuli/beaker-hiera/pull/21) ([bastelfreak](https://github.com/bastelfreak)) diff --git a/Rakefile b/Rakefile index 89f2b27..231b3b7 100644 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,7 @@ rescue LoadError # github_changelog_generator is an optional release else GitHubChangelogGenerator::RakeTask.new :changelog do |config| - config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog] + config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions] config.user = 'voxpupuli' config.project = 'beaker-hiera' gem_version = Gem::Specification.load("#{config.project}.gemspec").version diff --git a/lib/beaker-hiera/version.rb b/lib/beaker-hiera/version.rb index 72d5ec3..97a79e9 100644 --- a/lib/beaker-hiera/version.rb +++ b/lib/beaker-hiera/version.rb @@ -4,7 +4,7 @@ module Helpers module Hiera module Version # Current version of beaker-hiera - STRING = '0.6.0'.freeze + STRING = '1.0.0'.freeze end end end