diff --git a/CHANGELOG.md b/CHANGELOG.md index 95e08ad817..0220f4358d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [8.19.2](https://github.com/openvoxproject/puppet/tree/8.19.2) (2025-06-06) + +[Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.1...8.19.2) + +**Fixed bugs:** + +- server\_facts: Switch implementation-\>serverimplementation [\#107](https://github.com/OpenVoxProject/puppet/pull/107) ([binford2k](https://github.com/binford2k)) +- Reflect Ruby 3.4 stack trace changes [\#100](https://github.com/OpenVoxProject/puppet/pull/100) ([ekohl](https://github.com/ekohl)) +- Add base64 as gem dependencies for Ruby 3.4 [\#98](https://github.com/OpenVoxProject/puppet/pull/98) ([ekohl](https://github.com/ekohl)) +- Add racc gem dependency [\#89](https://github.com/OpenVoxProject/puppet/pull/89) ([ekohl](https://github.com/ekohl)) + ## [8.19.1](https://github.com/openvoxproject/puppet/tree/8.19.1) (2025-06-03) [Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.0...8.19.1) diff --git a/Rakefile b/Rakefile index 92a971d233..98cf21ae52 100644 --- a/Rakefile +++ b/Rakefile @@ -162,6 +162,7 @@ begin config.exclude_labels = %w[dependencies duplicate question invalid wontfix wont-fix modulesync skip-changelog] config.since_tag = "8.18.1" config.future_release = Puppet::PUPPETVERSION + config.exclude_tags_regex = /\A7\./ end rescue LoadError task :changelog do diff --git a/lib/puppet/version.rb b/lib/puppet/version.rb index 38c88537d1..e2ab08e236 100644 --- a/lib/puppet/version.rb +++ b/lib/puppet/version.rb @@ -8,7 +8,7 @@ # Raketasks and such to set the version based on the output of `git describe` module Puppet - PUPPETVERSION = '8.19.1' + PUPPETVERSION = '8.19.2' IMPLEMENTATION = 'openvox' ## diff --git a/puppet.gemspec b/puppet.gemspec index e263c2cac8..32d8a960f4 100644 --- a/puppet.gemspec +++ b/puppet.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "openvox" - spec.version = "8.19.1" + spec.version = "8.19.2" spec.licenses = ['Apache-2.0'] spec.required_rubygems_version = Gem::Requirement.new("> 1.3.1")