Skip to content

Commit 7845d68

Browse files
committed
Release v7.2.2
1 parent a4be5b9 commit 7845d68

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

3-
## [7.2.1](https://github.com/voxpupuli/beaker/tree/7.2.1) (2025-10-24)
3+
All notable changes to this project will be documented in this file.
4+
5+
## [7.2.2](https://github.com/voxpupuli/beaker/tree/7.2.2) (2025-12-19)
6+
7+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/7.2.1...7.2.2)
8+
9+
**Merged pull requests:**
10+
11+
- allow minitest 6.x [\#1974](https://github.com/voxpupuli/beaker/pull/1974) ([rwaffen](https://github.com/rwaffen))
12+
13+
## [7.2.1](https://github.com/voxpupuli/beaker/tree/7.2.1) (2025-10-25)
414

515
[Full Changelog](https://github.com/voxpupuli/beaker/compare/7.2.0...7.2.1)
616

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ end
1010
group :release, optional: true do
1111
gem 'faraday-retry', '~> 2.1', require: false
1212
# fix from smortex to properly process commits that exist in multiple branches
13-
# gem 'github_changelog_generator', github: 'smortex/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time', require: false
14-
gem 'github_changelog_generator', '~> 1.16.4', require: false
13+
gem 'github_changelog_generator', github: 'smortex/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time', require: false
14+
# gem 'github_changelog_generator', '~> 1.16.4', require: false
1515
end

Rakefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,16 +184,14 @@ namespace :test do
184184
end
185185

186186
begin
187-
require 'rubygems'
188187
require 'github_changelog_generator/task'
189188

190189
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
191-
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog github_actions}
190+
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
191+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
192192
config.user = 'voxpupuli'
193193
config.project = 'beaker'
194-
gem_version = Gem::Specification.load("#{config.project}.gemspec").version
195-
config.future_release = gem_version
196-
config.release_branch = 'master'
194+
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
197195
config.exclude_tags_regex = /\A4\./
198196
config.since_tag = '5.7.0'
199197
end

lib/beaker/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Beaker
22
module Version
3-
STRING = '7.2.1'
3+
STRING = '7.2.2'
44
end
55
end

0 commit comments

Comments
 (0)