summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2019-04-26 16:47:40 +0000
committerChef Expeditor <chef-ci@chef.io>2019-04-26 16:47:40 +0000
commit2b29b613d6221c653069d9b4e7ff9a3f8bd56e7f (patch)
tree2e61bf0dba62f39213fb32916a3581074f641b8d
parent26b2bec06c9062fa060e458737ad5752094e59e3 (diff)
downloadchef-2b29b613d6221c653069d9b4e7ff9a3f8bd56e7f.tar.gz
Bump version to 15.0.235 by Chef Expeditorv15.0.235
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock10
-rw-r--r--VERSION2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--lib/chef/version.rb2
5 files changed, 12 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f0c2642f5..ab694aa830 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
-<!-- latest_release 15.0.234 -->
-## [v15.0.234](https://github.com/chef/chef/tree/v15.0.234) (2019-04-26)
+<!-- latest_release 15.0.235 -->
+## [v15.0.235](https://github.com/chef/chef/tree/v15.0.235) (2019-04-26)
#### Merged Pull Requests
-- Fix for write permissions were not working properly on windows [#8168](https://github.com/chef/chef/pull/8168) ([vijaymmali1990](https://github.com/vijaymmali1990))
+- windows_task: Add start_when_available support [#8420](https://github.com/chef/chef/pull/8420) ([vsingh-msys](https://github.com/vsingh-msys))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- windows_task: Add start_when_available support [#8420](https://github.com/chef/chef/pull/8420) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- 15.0.235 -->
- Fix for write permissions were not working properly on windows [#8168](https://github.com/chef/chef/pull/8168) ([vijaymmali1990](https://github.com/vijaymmali1990)) <!-- 15.0.234 -->
- Refactor bootstrapping to use train as the transport with full Windows bootstrap support [#8253](https://github.com/chef/chef/pull/8253) ([marcparadise](https://github.com/marcparadise)) <!-- 15.0.233 -->
- Move ed25519 gems into omnibus [#8410](https://github.com/chef/chef/pull/8410) ([tas50](https://github.com/tas50)) <!-- 15.0.232 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index bde7e74def..518cf0c595 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,11 +27,11 @@ GIT
PATH
remote: .
specs:
- chef (15.0.234)
+ chef (15.0.235)
addressable
bcrypt_pbkdf (~> 1.0)
bundler (>= 1.10)
- chef-config (= 15.0.234)
+ chef-config (= 15.0.235)
chef-core (~> 0.0.3)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
@@ -56,11 +56,11 @@ PATH
syslog-logger (~> 1.6)
tty-screen (~> 0.6)
uuidtools (~> 2.1.5)
- chef (15.0.234-universal-mingw32)
+ chef (15.0.235-universal-mingw32)
addressable
bcrypt_pbkdf (~> 1.0)
bundler (>= 1.10)
- chef-config (= 15.0.234)
+ chef-config (= 15.0.235)
chef-core (~> 0.0.3)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
@@ -101,7 +101,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (15.0.234)
+ chef-config (15.0.235)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
diff --git a/VERSION b/VERSION
index 5d1a5fdbb3..3cdacea2cb 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.234 \ No newline at end of file
+15.0.235 \ No newline at end of file
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index 9adf48df65..f527d57005 100644
--- a/chef-config/lib/chef-config/version.rb
+++ b/chef-config/lib/chef-config/version.rb
@@ -21,7 +21,7 @@
module ChefConfig
CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
- VERSION = "15.0.234".freeze
+ VERSION = "15.0.235".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 16078696a2..14b21961c5 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -23,7 +23,7 @@ require "chef/version_string"
class Chef
CHEF_ROOT = File.expand_path("../..", __FILE__)
- VERSION = Chef::VersionString.new("15.0.234")
+ VERSION = Chef::VersionString.new("15.0.235")
end
#