diff options
author | Adam Jacob <adam@opscode.com> | 2010-03-02 02:55:30 -0800 |
---|---|---|
committer | Adam Jacob <adam@opscode.com> | 2010-03-02 02:55:30 -0800 |
commit | 02ebc7084da431072ad81eb822e1f748a1903ca0 (patch) | |
tree | eebd80dc9f487e03e1589eeb44931891654ff4d0 | |
parent | 6ffa02817894d5ef6082d37610d26d84bd82cbeb (diff) | |
download | chef-02ebc7084da431072ad81eb822e1f748a1903ca0.tar.gz |
Marking Chef 0.8.4 for release0.8.4
-rw-r--r-- | chef-server-api/Rakefile | 2 | ||||
-rw-r--r-- | chef-server-webui/Rakefile | 2 | ||||
-rw-r--r-- | chef-server/Rakefile | 2 | ||||
-rw-r--r-- | chef-solr/VERSION | 2 | ||||
-rw-r--r-- | chef/Rakefile | 2 | ||||
-rw-r--r-- | chef/lib/chef.rb | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/chef-server-api/Rakefile b/chef-server-api/Rakefile index 7f6e937453..327c8e083d 100644 --- a/chef-server-api/Rakefile +++ b/chef-server-api/Rakefile @@ -5,7 +5,7 @@ require 'merb-core' require 'merb-core/tasks/merb' GEM_NAME = "chef-server-api" -CHEF_SERVER_VERSION="0.8.2" +CHEF_SERVER_VERSION="0.8.4" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef-server-webui/Rakefile b/chef-server-webui/Rakefile index f9d01a058c..9d31e32897 100644 --- a/chef-server-webui/Rakefile +++ b/chef-server-webui/Rakefile @@ -5,7 +5,7 @@ require 'merb-core' require 'merb-core/tasks/merb' GEM_NAME = "chef-server-webui" -CHEF_SERVER_VERSION="0.8.2" +CHEF_SERVER_VERSION="0.8.4" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef-server/Rakefile b/chef-server/Rakefile index 2a2203fc62..d69ee160b1 100644 --- a/chef-server/Rakefile +++ b/chef-server/Rakefile @@ -18,7 +18,7 @@ require 'chef' unless defined?(Chef) include FileUtils GEM = "chef-server" -CHEF_SERVER_VERSION = "0.8.2" +CHEF_SERVER_VERSION = "0.8.4" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef-solr/VERSION b/chef-solr/VERSION index 100435be13..b60d71966a 100644 --- a/chef-solr/VERSION +++ b/chef-solr/VERSION @@ -1 +1 @@ -0.8.2 +0.8.4 diff --git a/chef/Rakefile b/chef/Rakefile index f2aa907a7c..d7b01199e4 100644 --- a/chef/Rakefile +++ b/chef/Rakefile @@ -4,7 +4,7 @@ require 'rake/rdoctask' require './tasks/rspec.rb' GEM = "chef" -CHEF_VERSION = "0.8.2" +CHEF_VERSION = "0.8.4" AUTHOR = "Adam Jacob" EMAIL = "adam@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef/lib/chef.rb b/chef/lib/chef.rb index 8ec543e6d7..aeacc80e4f 100644 --- a/chef/lib/chef.rb +++ b/chef/lib/chef.rb @@ -27,7 +27,7 @@ require 'chef/config' Dir[File.join(File.dirname(__FILE__), 'chef/mixin/**/*.rb')].sort.each { |lib| require lib } class Chef - VERSION = '0.8.2' + VERSION = '0.8.4' end # Adds a Dir.glob to Ruby 1.8.5, for compat |