summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2021-03-07 06:13:20 +0000
committerChef Expeditor <chef-ci@chef.io>2021-03-07 06:13:24 +0000
commit4ca8a91dd283503312c2f8887a31bdad63224879 (patch)
tree704676c95a0772bdab148e333020878fa7e7e2b2
parent3d9717b2a9dfdad62c301028884d2a16415de6d5 (diff)
downloadchef-4ca8a91dd283503312c2f8887a31bdad63224879.tar.gz
Bump version to 17.0.138 by Chef Expeditorv17.0.138
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r--CHANGELOG.md6
-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, 18 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3c29db6be3..6852ca462a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,11 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
This changelog lists individual merged pull requests to Chef Infra Client and geared towards developers. For a list of significant changes per release see the [Chef Infra Client Release Notes](https://docs.chef.io/release_notes_client/).
-<!-- latest_release unreleased -->
-## Unreleased
+<!-- latest_release 17.0.138 -->
+## [v17.0.138](https://github.com/chef/chef/tree/v17.0.138) (2021-03-07)
#### Merged Pull Requests
+- Update FFI to 1.15.0 [#11151](https://github.com/chef/chef/pull/11151) ([tas50](https://github.com/tas50))
- Resolve Test Kitchen failures on Oracle 8 [#11140](https://github.com/chef/chef/pull/11140) ([tas50](https://github.com/tas50))
<!-- latest_release -->
@@ -12,6 +13,7 @@ This changelog lists individual merged pull requests to Chef Infra Client and ge
### Changes not yet released to stable
#### Merged Pull Requests
+- Update FFI to 1.15.0 [#11151](https://github.com/chef/chef/pull/11151) ([tas50](https://github.com/tas50)) <!-- 17.0.138 -->
- Resolve Test Kitchen failures on Oracle 8 [#11140](https://github.com/chef/chef/pull/11140) ([tas50](https://github.com/tas50)) <!-- 17.0.137 -->
- Build place for documenting internal/dev/unsupported commands [#11148](https://github.com/chef/chef/pull/11148) ([jaymzh](https://github.com/jaymzh)) <!-- 17.0.137 -->
- Move idempotency logs to debug [#11149](https://github.com/chef/chef/pull/11149) ([jaymzh](https://github.com/jaymzh)) <!-- 17.0.136 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 992212c391..a887d79ad4 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -28,11 +28,11 @@ GIT
PATH
remote: .
specs:
- chef (17.0.137)
+ chef (17.0.138)
addressable
bcrypt_pbkdf (~> 1.1)
- chef-config (= 17.0.137)
- chef-utils (= 17.0.137)
+ chef-config (= 17.0.138)
+ chef-utils (= 17.0.138)
chef-vault
chef-zero (>= 14.0.11)
diff-lcs (>= 1.2.4, < 1.4.0)
@@ -64,11 +64,11 @@ PATH
tty-screen (~> 0.6)
tty-table (~> 0.11)
uuidtools (>= 2.1.5, < 3.0)
- chef (17.0.137-universal-mingw32)
+ chef (17.0.138-universal-mingw32)
addressable
bcrypt_pbkdf (~> 1.1)
- chef-config (= 17.0.137)
- chef-utils (= 17.0.137)
+ chef-config (= 17.0.138)
+ chef-utils (= 17.0.138)
chef-vault
chef-zero (>= 14.0.11)
diff-lcs (>= 1.2.4, < 1.4.0)
@@ -115,15 +115,15 @@ PATH
PATH
remote: chef-bin
specs:
- chef-bin (17.0.137)
- chef (= 17.0.137)
+ chef-bin (17.0.138)
+ chef (= 17.0.138)
PATH
remote: chef-config
specs:
- chef-config (17.0.137)
+ chef-config (17.0.138)
addressable
- chef-utils (= 17.0.137)
+ chef-utils (= 17.0.138)
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
mixlib-shellout (>= 2.0, < 4.0)
@@ -132,7 +132,7 @@ PATH
PATH
remote: chef-utils
specs:
- chef-utils (17.0.137)
+ chef-utils (17.0.138)
GEM
remote: https://rubygems.org/
diff --git a/VERSION b/VERSION
index d21f69d848..58292679eb 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-17.0.137 \ No newline at end of file
+17.0.138 \ 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 b0f4c08e76..30f3857a10 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 = "17.0.137".freeze
+ VERSION = "17.0.138".freeze
end
#
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index 296060d731..d0ad54574b 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 = "17.0.137".freeze
+ VERSION = "17.0.138".freeze
end
diff --git a/chef-utils/lib/chef-utils/version.rb b/chef-utils/lib/chef-utils/version.rb
index 185bbf6cf3..4d43529c42 100644
--- a/chef-utils/lib/chef-utils/version.rb
+++ b/chef-utils/lib/chef-utils/version.rb
@@ -16,5 +16,5 @@
module ChefUtils
CHEFUTILS_ROOT = File.expand_path("..", __dir__)
- VERSION = "17.0.137"
+ VERSION = "17.0.138"
end
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 38d6606ffb..c0c54148a4 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("17.0.137")
+ VERSION = Chef::VersionString.new("17.0.138")
end
#