From 867acf75b99e705f7fd77310592ecfa0c8d3e349 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 13 Nov 2023 20:20:18 +0100 Subject: [PATCH] Release 1.22.0 --- CHANGELOG.md | 16 ++++++++++++++++ Rakefile | 2 +- lib/facterdb/version.rb | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cde7361..396591f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.22.0](https://rubygems.org/gems/facterdb/versions/1.22.0) (2023-11-13) + +[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.21.0...1.22.0) + +**Implemented enhancements:** + +- fedora38 facts [\#287](https://github.com/voxpupuli/facterdb/pull/287) ([hbrown-uiowa](https://github.com/hbrown-uiowa)) +- Add facts for Debian 12 [\#283](https://github.com/voxpupuli/facterdb/pull/283) ([TheMeier](https://github.com/TheMeier)) +- Adding windows servers for Facter 4.3 and 4.4 [\#273](https://github.com/voxpupuli/facterdb/pull/273) ([davidsandilands](https://github.com/davidsandilands)) +- new facts for 4.3 and 4.4 and a few stragglers for 4.1 [\#272](https://github.com/voxpupuli/facterdb/pull/272) ([hbrown-uiowa](https://github.com/hbrown-uiowa)) +- Introduce RuboCop [\#267](https://github.com/voxpupuli/facterdb/pull/267) ([bastelfreak](https://github.com/bastelfreak)) + +**Fixed bugs:** + +- Correct class documentation [\#281](https://github.com/voxpupuli/facterdb/pull/281) ([ekohl](https://github.com/ekohl)) + ## [1.21.0](https://rubygems.org/gems/facterdb/versions/1.21.0) (2023-01-25) [Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.20.0...1.21.0) diff --git a/Rakefile b/Rakefile index 0d3f88fb..55c6b4dc 100644 --- a/Rakefile +++ b/Rakefile @@ -11,7 +11,7 @@ begin GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.future_release = FacterDB::Version::STRING config.include_labels = %w[enhancement bug] - config.exclude_labels = %w[duplicate question invalid wontfix maintenance] + config.exclude_labels = %w[duplicate question invalid wontfix maintenance github_actions] config.user = 'voxpupuli' config.project = 'facterdb' config.release_url = 'https://rubygems.org/gems/facterdb/versions/%s' diff --git a/lib/facterdb/version.rb b/lib/facterdb/version.rb index 3bc36ec8..3f764745 100644 --- a/lib/facterdb/version.rb +++ b/lib/facterdb/version.rb @@ -1,5 +1,5 @@ module FacterDB module Version - STRING = '1.21.0' + STRING = '1.22.0' end end