Skip to content

Commit 8a0119d

Browse files
committed
Release 6.0.0
1 parent 0bd04f5 commit 8a0119d

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v6.0.0](https://github.com/voxpupuli/openvox-strings/tree/v6.0.0) (2025-08-13)
6+
7+
[Full Changelog](https://github.com/voxpupuli/openvox-strings/compare/v5.0.0...v6.0.0)
8+
9+
**Breaking changes:**
10+
11+
- Require Ruby 3.2 or newer [\#13](https://github.com/voxpupuli/openvox-strings/pull/13) ([bastelfreak](https://github.com/bastelfreak))
12+
13+
**Implemented enhancements:**
14+
15+
- Allow rgen 0.10.x [\#10](https://github.com/voxpupuli/openvox-strings/pull/10) ([smortex](https://github.com/smortex))
16+
517
## [v5.0.0](https://github.com/voxpupuli/openvox-strings/tree/v5.0.0) (2025-06-10)
618

719
[Full Changelog](https://github.com/voxpupuli/openvox-strings/compare/v4.1.3...v5.0.0)
@@ -15,6 +27,10 @@ All notable changes to this project will be documented in this file.
1527
- Rake task allows for a different commit message [\#4](https://github.com/voxpupuli/openvox-strings/pull/4) ([bastelfreak](https://github.com/bastelfreak))
1628
- Add Ruby 2.7/3.0 support [\#3](https://github.com/voxpupuli/openvox-strings/pull/3) ([bastelfreak](https://github.com/bastelfreak))
1729

30+
**Merged pull requests:**
31+
32+
- dependabot: check for github actions and bundler [\#6](https://github.com/voxpupuli/openvox-strings/pull/6) ([bastelfreak](https://github.com/bastelfreak))
33+
1834
<!-- markdownlint-disable MD024 -->
1935
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
2036

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ begin
4444
version = OpenvoxStrings::VERSION
4545
config.future_release = "v#{version}" if /^\d+\.\d+.\d+$/.match?(version)
4646
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
47-
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix modulesync skip-changelog github_actions]
47+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix modulesync skip-changelog github_actions dependencies]
4848
config.user = 'voxpupuli'
4949
config.project = 'openvox-strings'
5050
config.since_tag = 'v4.1.3'

lib/openvox-strings/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module OpenvoxStrings
4-
VERSION = '5.0.0'
4+
VERSION = '6.0.0'
55
end

0 commit comments

Comments
 (0)