summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2020-08-14 22:52:55 +0000
committerChef Expeditor <chef-ci@chef.io>2020-08-14 22:52:59 +0000
commit8b6aee19257eb81d468e1589fcfaf38c0603e5de (patch)
tree4cb376200b0b417c2c8d391300a006bce9feeebb
parent24fe5d7c958d60d4a5ec12024a4aa7670ac52b02 (diff)
downloadchef-8b6aee19257eb81d468e1589fcfaf38c0603e5de.tar.gz
Bump version to 16.4.28 by Chef Expeditorv16.4.28
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock22
-rw-r--r--VERSION2
-rw-r--r--chef-bin/lib/chef-bin/version.rb2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--chef-utils/lib/chef-utils/version.rb2
-rw-r--r--lib/chef/version.rb2
7 files changed, 20 insertions, 19 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb24203e9e..aa0bcec04c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
-<!-- latest_release 16.4.27 -->
-## [v16.4.27](https://github.com/chef/chef/tree/v16.4.27) (2020-08-14)
+<!-- latest_release 16.4.28 -->
+## [v16.4.28](https://github.com/chef/chef/tree/v16.4.28) (2020-08-14)
#### Merged Pull Requests
-- Fix File.exist throughout the codebase [#10284](https://github.com/chef/chef/pull/10284) ([tas50](https://github.com/tas50))
+- Convert the functional tests over to macos? as well [#10303](https://github.com/chef/chef/pull/10303) ([tas50](https://github.com/tas50))
<!-- latest_release -->
<!-- release_rollup since=16.3.45 -->
### Changes not yet released to stable
#### Merged Pull Requests
+- Convert the functional tests over to macos? as well [#10303](https://github.com/chef/chef/pull/10303) ([tas50](https://github.com/tas50)) <!-- 16.4.28 -->
- Fix File.exist throughout the codebase [#10284](https://github.com/chef/chef/pull/10284) ([tas50](https://github.com/tas50)) <!-- 16.4.27 -->
- Minor tweaks to the platform checks in the specs [#10289](https://github.com/chef/chef/pull/10289) ([tas50](https://github.com/tas50)) <!-- 16.4.26 -->
- Update Omnibus kitchen config with public boxes [#10292](https://github.com/chef/chef/pull/10292) ([tas50](https://github.com/tas50)) <!-- 16.4.25 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index e200c64711..fefdd5ce39 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,12 +27,12 @@ GIT
PATH
remote: .
specs:
- chef (16.4.27)
+ chef (16.4.28)
addressable
bcrypt_pbkdf (= 1.1.0.rc1)
bundler (>= 1.10)
- chef-config (= 16.4.27)
- chef-utils (= 16.4.27)
+ chef-config (= 16.4.28)
+ chef-utils (= 16.4.28)
chef-vault
chef-zero (>= 14.0.11)
diff-lcs (>= 1.2.4, < 1.4.0)
@@ -62,12 +62,12 @@ PATH
tty-prompt (~> 0.21)
tty-screen (~> 0.6)
uuidtools (~> 2.1.5)
- chef (16.4.27-universal-mingw32)
+ chef (16.4.28-universal-mingw32)
addressable
bcrypt_pbkdf (= 1.1.0.rc1)
bundler (>= 1.10)
- chef-config (= 16.4.27)
- chef-utils (= 16.4.27)
+ chef-config (= 16.4.28)
+ chef-utils (= 16.4.28)
chef-vault
chef-zero (>= 14.0.11)
diff-lcs (>= 1.2.4, < 1.4.0)
@@ -113,15 +113,15 @@ PATH
PATH
remote: chef-bin
specs:
- chef-bin (16.4.27)
- chef (= 16.4.27)
+ chef-bin (16.4.28)
+ chef (= 16.4.28)
PATH
remote: chef-config
specs:
- chef-config (16.4.27)
+ chef-config (16.4.28)
addressable
- chef-utils (= 16.4.27)
+ chef-utils (= 16.4.28)
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
mixlib-shellout (>= 2.0, < 4.0)
@@ -130,7 +130,7 @@ PATH
PATH
remote: chef-utils
specs:
- chef-utils (16.4.27)
+ chef-utils (16.4.28)
GEM
remote: https://rubygems.org/
diff --git a/VERSION b/VERSION
index 38f9821926..1e91013ab1 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-16.4.27 \ No newline at end of file
+16.4.28 \ No newline at end of file
diff --git a/chef-bin/lib/chef-bin/version.rb b/chef-bin/lib/chef-bin/version.rb
index 4f99c01803..25b4b8a26f 100644
--- a/chef-bin/lib/chef-bin/version.rb
+++ b/chef-bin/lib/chef-bin/version.rb
@@ -21,7 +21,7 @@
module ChefBin
CHEFBIN_ROOT = File.expand_path("..", __dir__)
- VERSION = "16.4.27".freeze
+ VERSION = "16.4.28".freeze
end
#
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index 310d2293a0..7b0195b5bf 100644
--- a/chef-config/lib/chef-config/version.rb
+++ b/chef-config/lib/chef-config/version.rb
@@ -15,5 +15,5 @@
module ChefConfig
CHEFCONFIG_ROOT = File.expand_path("..", __dir__)
- VERSION = "16.4.27".freeze
+ VERSION = "16.4.28".freeze
end
diff --git a/chef-utils/lib/chef-utils/version.rb b/chef-utils/lib/chef-utils/version.rb
index 5f8d5c6fc6..f597524344 100644
--- a/chef-utils/lib/chef-utils/version.rb
+++ b/chef-utils/lib/chef-utils/version.rb
@@ -15,5 +15,5 @@
module ChefUtils
CHEFUTILS_ROOT = File.expand_path("..", __dir__)
- VERSION = "16.4.27".freeze
+ VERSION = "16.4.28".freeze
end
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 9e77fa0cd1..616a457d85 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -23,7 +23,7 @@ require_relative "version_string"
class Chef
CHEF_ROOT = File.expand_path("..", __dir__)
- VERSION = Chef::VersionString.new("16.4.27")
+ VERSION = Chef::VersionString.new("16.4.28")
end
#