diff options
author | tyler-ball <tyleraball@gmail.com> | 2016-02-01 16:35:57 -0700 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2016-02-03 19:18:05 -0700 |
commit | dabc583558d94b0387156a31208cbe344b42363d (patch) | |
tree | efeb2705672a4e12dab606027ffefd647bebcf2b /omnibus/config | |
parent | 0124a5878240639173733798e8e8bde2ce6133db (diff) | |
download | chef-dabc583558d94b0387156a31208cbe344b42363d.tar.gz |
Updates to the omnibus build_version and the RELEASE_NOTES for the 12.7 release
Diffstat (limited to 'omnibus/config')
-rw-r--r-- | omnibus/config/projects/chef.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb index 4242e0fef0..f3f3afb760 100644 --- a/omnibus/config/projects/chef.rb +++ b/omnibus/config/projects/chef.rb @@ -20,7 +20,8 @@ maintainer "Chef Software, Inc. <maintainers@chef.io>" homepage "https://www.chef.io" build_iteration 1 -build_version "12.6.0" +version_file = File.expand_path("../../../../VERSION", __FILE__) +build_version IO.read(version_file).strip if windows? # NOTE: Ruby DevKit fundamentally CANNOT be installed into "Program Files" @@ -57,8 +58,7 @@ end # Chef Release version pinning override :chef, version: "local_source" -override :ohai, version: "master" - +override :ohai, version: "v8.9.0" dependency "preparation" dependency "chef" |