diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8e0a10c35..22aea8dff 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,5 +1,5 @@ # Order is important. The last matching pattern has the most precedence. * @inspec/inspec-core-team -docs-chef-io/** @chef/docs-team @inspec/inspec-core-team -*.md @chef/docs-team @inspec/inspec-core-team +docs-chef-io/** @inspec/inspec-core-team @chef/docs-team @mjingle @IanMadd +*.md @inspec/inspec-core-team @chef/docs-team @mjingle @IanMadd diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bb943a5f..6dfecbb45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,18 @@ # Change Log - -## [v4.23.18](https://github.com/inspec/inspec/tree/v4.23.18) (2020-11-05) + +## Unreleased #### Merged Pull Requests -- replace deprecated attributes section with inputs [#5295](https://github.com/inspec/inspec/pull/5295) ([KonradSchieban](https://github.com/KonradSchieban)) +- Update Codeowners file for Docs [#5298](https://github.com/inspec/inspec/pull/5298) ([mjingle](https://github.com/mjingle)) ### Changes since 4.23.15 release #### Merged Pull Requests +- Update Codeowners file for Docs [#5298](https://github.com/inspec/inspec/pull/5298) ([mjingle](https://github.com/mjingle)) +- Bumps parallel for ruby 2.4 issue [#5304](https://github.com/inspec/inspec/pull/5304) ([Schwad](https://github.com/Schwad)) - replace deprecated attributes section with inputs [#5295](https://github.com/inspec/inspec/pull/5295) ([KonradSchieban](https://github.com/KonradSchieban)) - Add ed25519 support to the habitat package [#5299](https://github.com/inspec/inspec/pull/5299) ([btm](https://github.com/btm)) - Pin rspec to 3.9 [#5297](https://github.com/inspec/inspec/pull/5297) ([james-stocks](https://github.com/james-stocks)) diff --git a/VERSION b/VERSION index f5a30d2b0..9352eb456 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.23.18 \ No newline at end of file +4.23.19 \ No newline at end of file diff --git a/inspec-bin/lib/inspec-bin/version.rb b/inspec-bin/lib/inspec-bin/version.rb index c0f6a896a..48d1d8070 100644 --- a/inspec-bin/lib/inspec-bin/version.rb +++ b/inspec-bin/lib/inspec-bin/version.rb @@ -1,5 +1,5 @@ # This file managed by automation - do not edit manually module InspecBin INSPECBIN_ROOT = File.expand_path("../..", __FILE__) - VERSION = "4.23.18".freeze + VERSION = "4.23.19".freeze end diff --git a/inspec-core.gemspec b/inspec-core.gemspec index 08919a032..4657985cf 100644 --- a/inspec-core.gemspec +++ b/inspec-core.gemspec @@ -35,7 +35,7 @@ Gem::Specification.new do |spec| spec.add_dependency "hashie", "~> 3.4" spec.add_dependency "mixlib-log", "~> 3.0" spec.add_dependency "sslshake", "~> 1.2" - spec.add_dependency "parallel", "~> 1.9" + spec.add_dependency "parallel", "~> 1.9", "< 1.20" # TODO: remove top pin when we drop 2.4 support spec.add_dependency "faraday", ">= 0.9.0", "< 1.1" spec.add_dependency "tty-table", "~> 0.10" spec.add_dependency "tty-prompt", "~> 0.17" diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 9b136fa63..baf049807 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.23.18".freeze + VERSION = "4.23.19".freeze end