summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jacob <adam@opscode.com>2010-02-28 13:43:45 -0800
committerAdam Jacob <adam@opscode.com>2010-02-28 13:43:45 -0800
commitdcf485bcb837f4c9f7af486727977272ea739cff (patch)
treeb4e28532510f74f02a6150942e1c00107fe37d68
parentb1248ff903046aaf7b56e67f256b33f6d345b672 (diff)
downloadchef-dcf485bcb837f4c9f7af486727977272ea739cff.tar.gz
Bumping to version 0.8.2 for release
-rw-r--r--chef-server-api/Rakefile2
-rw-r--r--chef-server-webui/Rakefile2
-rw-r--r--chef-server/Rakefile2
-rw-r--r--chef/Rakefile12
-rw-r--r--chef/lib/chef.rb2
5 files changed, 12 insertions, 8 deletions
diff --git a/chef-server-api/Rakefile b/chef-server-api/Rakefile
index a0eadb721b..7f6e937453 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.0"
+CHEF_SERVER_VERSION="0.8.2"
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 71cfb7105e..f9d01a058c 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.0"
+CHEF_SERVER_VERSION="0.8.2"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/Rakefile b/chef-server/Rakefile
index c686268118..2a2203fc62 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.0"
+CHEF_SERVER_VERSION = "0.8.2"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef/Rakefile b/chef/Rakefile
index e2e44993b3..f2aa907a7c 100644
--- a/chef/Rakefile
+++ b/chef/Rakefile
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
require './tasks/rspec.rb'
GEM = "chef"
-CHEF_VERSION = "0.8.0"
+CHEF_VERSION = "0.8.2"
AUTHOR = "Adam Jacob"
EMAIL = "adam@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
@@ -22,10 +22,14 @@ spec = Gem::Specification.new do |s|
s.email = EMAIL
s.homepage = HOMEPAGE
- s.add_dependency "mixlib-config", ">= 1.0.12"
- s.add_dependency "ohai", ">= 0.3.6"
+ s.add_dependency "mixlib-config", ">= 1.1.0"
+ s.add_dependency "mixlib-cli", ">= 1.1.0"
+ s.add_dependency "mixlib-log", ">= 1.1.0"
+ s.add_dependency "mixlib-authentication", ">= 1.1.0"
+ s.add_dependency "ohai", ">= 0.4.0"
+
s.add_dependency "bunny", ">= 0.6.0"
- %w{mixlib-cli mixlib-log mixlib-authentication json erubis extlib amqp ruby-hmac moneta}.each { |gem| s.add_dependency gem }
+ %w{json erubis extlib amqp ruby-hmac moneta}.each { |gem| s.add_dependency gem }
s.bindir = "bin"
s.executables = %w( chef-client chef-solo knife shef )
diff --git a/chef/lib/chef.rb b/chef/lib/chef.rb
index 9551cedc4a..8ec543e6d7 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.0'
+ VERSION = '0.8.2'
end
# Adds a Dir.glob to Ruby 1.8.5, for compat