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 | |
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')
-rw-r--r-- | omnibus/Gemfile | 3 | ||||
-rw-r--r-- | omnibus/config/projects/chef.rb | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/omnibus/Gemfile b/omnibus/Gemfile index 12001d1c17..75afeff21f 100644 --- a/omnibus/Gemfile +++ b/omnibus/Gemfile @@ -15,4 +15,7 @@ group :development do gem "test-kitchen", "~> 1.4.0" gem "kitchen-vagrant", "~> 0.19.0" gem "winrm-transport", "~> 1.0" + gem "pry" + gem "pry-byebug" + gem "pry-stack_explorer" end 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" |