diff options
author | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-08-07 13:14:11 -0400 |
---|---|---|
committer | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-08-25 14:06:55 -0400 |
commit | 8a2ac509f9c4d262f2375ec6d3d3494eed730e0a (patch) | |
tree | 0be64929d159b0a7cb7753c112d485f54cd93b53 /chef-config | |
parent | a3f0b52d9c19df4136a07fbdcec7c416a1904c1a (diff) | |
download | chef-8a2ac509f9c4d262f2375ec6d3d3494eed730e0a.tar.gz |
Run rake version to get updates.
Diffstat (limited to 'chef-config')
-rw-r--r-- | chef-config/VERSION | 1 | ||||
-rw-r--r-- | chef-config/lib/chef-config/version.rb | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chef-config/VERSION b/chef-config/VERSION new file mode 100644 index 0000000000..9a03cd310d --- /dev/null +++ b/chef-config/VERSION @@ -0,0 +1 @@ +12.5.0.current.0 diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb index aee626f240..9579f0638d 100644 --- a/chef-config/lib/chef-config/version.rb +++ b/chef-config/lib/chef-config/version.rb @@ -20,6 +20,15 @@ #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! module ChefConfig + CHEFCONFIG_ROOT = File.dirname(File.expand_path(File.dirname(__FILE__))) VERSION = '12.5.0.current.0' end +# +# NOTE: the Chef::Version class is defined in version_class.rb +# +# NOTE: DO NOT Use the Chef::Version class on ChefConfig::VERSIONs. The +# Chef::Version class is for _cookbooks_ only, and cannot handle +# pre-release versions like "10.14.0.rc.2". Please use Rubygem's +# Gem::Version class instead. +# |