Skip to content

Commit 9ea16b6

Browse files
authored
Merge pull request #41 from bastelfreak/rel510
Release 5.1.0
2 parents fa73c6f + 097ef0c commit 9ea16b6

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

CHANGELOG.md

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

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

5+
## [5.1.0](https://github.com/openvoxproject/openfact/tree/5.1.0) (2025-07-10)
6+
7+
[Full Changelog](https://github.com/openvoxproject/openfact/compare/5.0.0...5.1.0)
8+
9+
**Implemented enhancements:**
10+
11+
- Add Ruby 3.4 support [\#36](https://github.com/OpenVoxProject/openfact/pull/36) ([bastelfreak](https://github.com/bastelfreak))
12+
- Add FreeBSD custom\_facts directory [\#35](https://github.com/OpenVoxProject/openfact/pull/35) ([smortex](https://github.com/smortex))
13+
- Allow latest version of thor [\#34](https://github.com/OpenVoxProject/openfact/pull/34) ([smortex](https://github.com/smortex))
14+
15+
**Merged pull requests:**
16+
17+
- pin rubocop to \< 1.79 [\#40](https://github.com/OpenVoxProject/openfact/pull/40) ([bastelfreak](https://github.com/bastelfreak))
18+
19+
## [5.0.0](https://github.com/openvoxproject/openfact/tree/5.0.0) (2025-06-27)
20+
21+
[Full Changelog](https://github.com/openvoxproject/openfact/compare/5.0.0.rc1...5.0.0)
22+
523
## [5.0.0.rc1](https://github.com/openvoxproject/openfact/tree/5.0.0.rc1) (2025-06-27)
624

725
[Full Changelog](https://github.com/openvoxproject/openfact/compare/5.0.0.rc0...5.0.0.rc1)

Rakefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ begin
2323
config.project = 'openfact'
2424
config.exclude_labels = %w[dependencies duplicate question invalid wontfix wont-fix modulesync skip-changelog]
2525
config.future_release = Facter::VERSION
26+
# we limit the changelog to all new openvox releases, to skip perforce onces
27+
# otherwise the changelog generate takes a lot amount of time
28+
config.since_tag = '4.10.0'
2629
end
2730
rescue LoadError
2831
task :changelog do

lib/facter/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 Facter
4-
VERSION = '5.0.0' unless defined?(VERSION)
4+
VERSION = '5.1.0' unless defined?(VERSION)
55
end

openfact.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55

66
Gem::Specification.new do |spec|
77
spec.name = 'openfact'
8-
spec.version = '5.0.0'
8+
spec.version = '5.1.0'
99
spec.authors = ['OpenVox Project']
1010
spec.email = ['openvox@voxpupuli.org']
1111
spec.homepage = 'https://github.com/OpenVoxProject/openfact/'

0 commit comments

Comments
 (0)