From dcf8f4e723aff57fe63a3a05f2a6c662ec924893 Mon Sep 17 00:00:00 2001 From: Thom May Date: Thu, 31 Dec 2009 11:22:58 +0000 Subject: [PATCH] the wt1 version number makes gem very unhappy --- CHANGELOG | 2 +- chef-server-slice/Rakefile | 2 +- chef-server/Rakefile | 2 +- chef/Rakefile | 2 +- chef/lib/chef.rb | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ca5a2949dbd..68cef712c8d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ Tue, 29 Dec 2009 19:51:02 +0000 -Release Notes - Chef - Version 0.7.16wt1 +Release Notes - Chef - Version 0.7.16.1 ** This is an unofficial release ** ** Bryan McLellan ** diff --git a/chef-server-slice/Rakefile b/chef-server-slice/Rakefile index 2a331905669..8302ab25f29 100644 --- a/chef-server-slice/Rakefile +++ b/chef-server-slice/Rakefile @@ -9,7 +9,7 @@ rescue LoadError end GEM_NAME = "chef-server-slice" -CHEF_SERVER_VERSION="0.7.16wt1" +CHEF_SERVER_VERSION="0.7.16.1" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef-server/Rakefile b/chef-server/Rakefile index b0d2979420c..adb48f60daa 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.7.16wt1" +CHEF_SERVER_VERSION = "0.7.16.1" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" diff --git a/chef/Rakefile b/chef/Rakefile index 880bcb825dc..933f5bd8ca6 100644 --- a/chef/Rakefile +++ b/chef/Rakefile @@ -4,7 +4,7 @@ require 'rake/rdoctask' require './tasks/rspec.rb' GEM = "chef" -CHEF_VERSION = "0.7.16wt1" +CHEF_VERSION = "0.7.16.1" 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 d0cad946c49..980f7031a8a 100644 --- a/chef/lib/chef.rb +++ b/chef/lib/chef.rb @@ -27,7 +27,7 @@ Dir[File.join(File.dirname(__FILE__), 'chef/mixin/**/*.rb')].sort.each { |lib| require lib } class Chef - VERSION = '0.7.16wt1' + VERSION = '0.7.16.1' end # Adds a Dir.glob to Ruby 1.8.5, for compat