diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-05-24 05:38:08 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-05-24 05:38:08 +0000 |
commit | b55665dc80e0b92e93342a7a898147a266689787 (patch) | |
tree | e7507249ca4f4a4995180fa67fe6637fa324a0bb | |
parent | 034acf8be2cd69bc1fd91c770759cac974b67b8e (diff) | |
download | chef-b55665dc80e0b92e93342a7a898147a266689787.tar.gz |
Bump version to 14.12.12 by Chef Expeditorv14.12.12
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Gemfile.lock | 10 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | chef-config/lib/chef-config/version.rb | 2 | ||||
-rw-r--r-- | lib/chef/version.rb | 2 |
5 files changed, 12 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f673296f9..80528e8d95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 14.12.11 --> -## [v14.12.11](https://github.com/chef/chef/tree/v14.12.11) (2019-05-24) +<!-- latest_release 14.12.12 --> +## [v14.12.12](https://github.com/chef/chef/tree/v14.12.12) (2019-05-24) #### Merged Pull Requests -- Remove resource collision deprecations [#8511](https://github.com/chef/chef/pull/8511) ([tas50](https://github.com/tas50)) +- Fix service enable idempotency in sles11 (#8256) [#8587](https://github.com/chef/chef/pull/8587) ([btm](https://github.com/btm)) <!-- latest_release --> <!-- release_rollup since=14.12.9 --> ### Changes since 14.12.9 release #### Merged Pull Requests +- Fix service enable idempotency in sles11 (#8256) [#8587](https://github.com/chef/chef/pull/8587) ([btm](https://github.com/btm)) <!-- 14.12.12 --> - Remove resource collision deprecations [#8511](https://github.com/chef/chef/pull/8511) ([tas50](https://github.com/tas50)) <!-- 14.12.11 --> - Add chef-14 update_version script [#8565](https://github.com/chef/chef/pull/8565) ([jaymalasinha](https://github.com/jaymalasinha)) <!-- 14.12.10 --> <!-- release_rollup --> diff --git a/Gemfile.lock b/Gemfile.lock index 0e4e4c5e94..e3d7e0e549 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - chef (14.12.11) + chef (14.12.12) addressable bundler (>= 1.10) - chef-config (= 14.12.11) + chef-config (= 14.12.12) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -31,10 +31,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (14.12.11-universal-mingw32) + chef (14.12.12-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 14.12.11) + chef-config (= 14.12.12) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -77,7 +77,7 @@ PATH PATH remote: chef-config specs: - chef-config (14.12.11) + chef-config (14.12.12) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -14.12.11
\ No newline at end of file +14.12.12
\ 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 e212589395..74c9763597 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 = "14.12.11".freeze + VERSION = "14.12.12".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 6e652345b3..d63635a242 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("14.12.11") + VERSION = Chef::VersionString.new("14.12.12") end # |