diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ace2ef235..cea7632524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [4.0.34](https://github.com/puppetlabs/facter/tree/4.0.34) (2020-08-12) + +[Full Changelog](https://github.com/puppetlabs/facter/compare/4.0.33...4.0.34) + +### Added + +- (FACT-2739) Extend os hierarchy to consider multiple os families [#2016](https://github.com/puppetlabs/facter/pull/2016) ([IrimieBogdan](https://github.com/IrimieBogdan)) +- Add FreeBSD memory facts [#2020](https://github.com/puppetlabs/facter/pull/2020) ([smortex](https://github.com/smortex)) +- Add FreeBSD dmi facts [#2021](https://github.com/puppetlabs/facter/pull/2021) ([smortex](https://github.com/smortex)) +- (FACT-2727) add load averages for Solaris [#2023](https://github.com/puppetlabs/facter/pull/2023) ([Filipovici-Andrei](https://github.com/Filipovici-Andrei)) + +### Fixed + +- (FACT-2714) Fix dhcp on solaris 10 [#2013](https://github.com/puppetlabs/facter/pull/2013) ([IrimieBogdan](https://github.com/IrimieBogdan)) +- (FACT-2732) OracleLinux 7 and Scientific Linux 7 OS facts incorrect in Facter 4.0.30 [#2014](https://github.com/puppetlabs/facter/pull/2014) ([IrimieBogdan](https://github.com/IrimieBogdan)) + + ## [4.0.33](https://github.com/puppetlabs/facter/tree/4.0.33) (2020-08-05) [Full Changelog](https://github.com/puppetlabs/facter/compare/4.0.32...4.0.33) @@ -309,4 +326,4 @@ -\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* \ No newline at end of file diff --git a/agent/facter-ng.gemspec b/agent/facter-ng.gemspec index 0feeee8f18..e6cd47d4aa 100644 --- a/agent/facter-ng.gemspec +++ b/agent/facter-ng.gemspec @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'facter-ng' - spec.version = '4.0.33' + spec.version = '4.0.34' spec.authors = ['Puppet'] spec.email = ['team-nw@puppet.com'] diff --git a/facter.gemspec b/facter.gemspec index d33eb911b7..f5e04ed456 100644 --- a/facter.gemspec +++ b/facter.gemspec @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'facter' - spec.version = '4.0.33' + spec.version = '4.0.34' spec.authors = ['Puppet'] spec.email = ['team-nw@puppet.com'] diff --git a/lib/facter/version.rb b/lib/facter/version.rb index 648a53e050..c84c05682d 100644 --- a/lib/facter/version.rb +++ b/lib/facter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Facter - VERSION = '4.0.33' unless defined?(VERSION) + VERSION = '4.0.34' unless defined?(VERSION) end