diff --git a/CHANGELOG.md b/CHANGELOG.md index 60a4f0d..53a6308 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [3.2.0](https://github.com/voxpupuli/modulesync/tree/3.2.0) (2023-10-31) + +[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.1.0...3.2.0) + +**Implemented enhancements:** + +- Update octokit requirement from \>= 4, \< 8 to \>= 4, \< 9 [\#278](https://github.com/voxpupuli/modulesync/pull/278) ([dependabot[bot]](https://github.com/apps/dependabot)) + +**Merged pull requests:** + +- Clean up redundant statement [\#276](https://github.com/voxpupuli/modulesync/pull/276) ([ekohl](https://github.com/ekohl)) + ## [3.1.0](https://github.com/voxpupuli/modulesync/tree/3.1.0) (2023-08-02) [Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.0.0...3.1.0) @@ -47,7 +59,6 @@ Release 3.0.0 was broken. It was tagged as 3.0.0 but accidentally released as 2. **Merged pull requests:** - Add CI best practices [\#264](https://github.com/voxpupuli/modulesync/pull/264) ([bastelfreak](https://github.com/bastelfreak)) -- Bump actions/checkout from 2 to 3 [\#262](https://github.com/voxpupuli/modulesync/pull/262) ([dependabot[bot]](https://github.com/apps/dependabot)) - dependabot: check for github actions and gems [\#261](https://github.com/voxpupuli/modulesync/pull/261) ([bastelfreak](https://github.com/bastelfreak)) ## [2.5.0](https://github.com/voxpupuli/modulesync/tree/2.5.0) (2022-10-14) diff --git a/Rakefile b/Rakefile index b6a4161..4ed08eb 100644 --- a/Rakefile +++ b/Rakefile @@ -29,7 +29,7 @@ begin require 'github_changelog_generator/task' GitHubChangelogGenerator::RakeTask.new :changelog do |config| 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 modulesync skip-changelog] + config.exclude_labels = %w[duplicate question invalid wontfix wont-fix modulesync skip-changelog github_actions] config.user = 'voxpupuli' config.project = 'modulesync' config.future_release = Gem::Specification.load("#{config.project}.gemspec").version diff --git a/modulesync.gemspec b/modulesync.gemspec index 20473a2..c7aa8ca 100644 --- a/modulesync.gemspec +++ b/modulesync.gemspec @@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'modulesync' - spec.version = '3.1.0' + spec.version = '3.2.0' spec.authors = ['Vox Pupuli'] spec.email = ['voxpupuli@groups.io'] spec.summary = 'Puppet Module Synchronizer'