summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2010-05-06 10:24:09 -0700
committerDaniel DeLeo <dan@opscode.com>2010-05-06 10:30:10 -0700
commit5c16bbe470ca6e47eb0b5904f3a50f84555d4aed (patch)
tree3f30c17be54258ecbcf461c4d9430e60f9be24e5
parent4655ff3466f9cb5e5af59bba2938a515867b27c8 (diff)
downloadchef-5c16bbe470ca6e47eb0b5904f3a50f84555d4aed.tar.gz
bump to version 0.8.12
-rw-r--r--chef-server-api/Rakefile2
-rw-r--r--chef-server-webui/Rakefile2
-rw-r--r--chef-server/Rakefile2
-rwxr-xr-xchef-server/bin/chef-server2
-rwxr-xr-xchef-server/bin/chef-server-webui2
-rw-r--r--chef-solr/VERSION2
-rw-r--r--chef-solr/lib/chef/solr.rb2
-rw-r--r--chef/Rakefile2
-rw-r--r--chef/lib/chef.rb2
9 files changed, 9 insertions, 9 deletions
diff --git a/chef-server-api/Rakefile b/chef-server-api/Rakefile
index df7dce40f9..79f824d37b 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.11"
+CHEF_SERVER_VERSION="0.8.12"
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 a062bab6af..8b9051036a 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.11"
+CHEF_SERVER_VERSION="0.8.12"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/Rakefile b/chef-server/Rakefile
index 54c9c4977b..b1f6e68d68 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.11"
+CHEF_SERVER_VERSION = "0.8.12"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/bin/chef-server b/chef-server/bin/chef-server
index bcdbca5a44..18710efdb1 100755
--- a/chef-server/bin/chef-server
+++ b/chef-server/bin/chef-server
@@ -26,7 +26,7 @@
require "rubygems"
require "merb-core"
-CHEF_SERVER_VERSION = "0.8.11"
+CHEF_SERVER_VERSION = "0.8.12"
[ 'chef', 'chef-server-api' ].each do |lib|
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "lib")))
diff --git a/chef-server/bin/chef-server-webui b/chef-server/bin/chef-server-webui
index 3f728bc870..e3f908370f 100755
--- a/chef-server/bin/chef-server-webui
+++ b/chef-server/bin/chef-server-webui
@@ -32,7 +32,7 @@ require "merb-core"
require library if File.exists?(library)
end
-CHEF_SERVER_VERSION = "0.8.11"
+CHEF_SERVER_VERSION = "0.8.12"
# Ensure the chef gem we load is the same version as the chef server
unless defined?(Chef)
diff --git a/chef-solr/VERSION b/chef-solr/VERSION
index 83ce05d72f..7eff8ab952 100644
--- a/chef-solr/VERSION
+++ b/chef-solr/VERSION
@@ -1 +1 @@
-0.8.11
+0.8.12
diff --git a/chef-solr/lib/chef/solr.rb b/chef-solr/lib/chef/solr.rb
index a5c8e4e83f..8f397593a8 100644
--- a/chef-solr/lib/chef/solr.rb
+++ b/chef-solr/lib/chef/solr.rb
@@ -34,7 +34,7 @@ require 'uri'
class Chef
class Solr
- VERSION = "0.8.11"
+ VERSION = "0.8.12"
include Chef::Mixin::XMLEscape
diff --git a/chef/Rakefile b/chef/Rakefile
index e9d398e4b3..a9b36da68c 100644
--- a/chef/Rakefile
+++ b/chef/Rakefile
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
require './tasks/rspec.rb'
GEM = "chef"
-CHEF_VERSION = "0.8.11"
+CHEF_VERSION = "0.8.12"
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 c402af5fdd..937e21acc9 100644
--- a/chef/lib/chef.rb
+++ b/chef/lib/chef.rb
@@ -30,7 +30,7 @@ require 'chef/webui_user'
require 'chef/openid_registration'
class Chef
- VERSION = "0.8.11"
+ VERSION = "0.8.12"
end
# Adds a Dir.glob to Ruby 1.8.5, for compat