diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e79f51..8220358 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,4 +29,4 @@ jobs: echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials chmod 0600 ~/.gem/credentials - name: Publish gem to GitHub packages - run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem + run: gem push --key github --host https://rubygems.pkg.github.com/puppetlabs *.gem diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d6c4d3..c3c2c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. +## [4.0.0](https://github.com/puppetlabs/beaker-puppet/tree/4.0.0) (2024-05-28) + +[Full Changelog](https://github.com/puppetlabs/beaker-puppet/compare/3.0.1...4.0.0) + +**Breaking changes:** + +- Add support for Beaker 6 [\#255](https://github.com/puppetlabs/beaker-puppet/pull/255) ([mhashizume](https://github.com/mhashizume)) +- Remove unsupported network platforms [\#254](https://github.com/puppetlabs/beaker-puppet/pull/254) ([mhashizume](https://github.com/mhashizume)) + ## [3.0.1](https://github.com/puppetlabs/beaker-puppet/tree/3.0.1) (2024-03-12) [Full Changelog](https://github.com/puppetlabs/beaker-puppet/compare/3.0.0...3.0.1) diff --git a/beaker-puppet.gemspec b/beaker-puppet.gemspec index 4a7f2a0..b43bd6f 100644 --- a/beaker-puppet.gemspec +++ b/beaker-puppet.gemspec @@ -29,6 +29,6 @@ Gem::Specification.new do |s| s.add_development_dependency 'beaker-vmpooler', '~> 1.4' # Run time dependencies - s.add_runtime_dependency 'beaker', '~> 6.0' + s.add_runtime_dependency 'beaker', '>= 5.0', '< 7' s.add_runtime_dependency 'oga', '~> 3.4' end diff --git a/lib/beaker-puppet/version.rb b/lib/beaker-puppet/version.rb index 7ab8604..c97d201 100644 --- a/lib/beaker-puppet/version.rb +++ b/lib/beaker-puppet/version.rb @@ -1,3 +1,3 @@ module BeakerPuppet - VERSION = '3.0.1' + VERSION = '4.0.0' end