summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG42
-rw-r--r--chef-server-slice/Rakefile2
-rw-r--r--chef-server/Rakefile2
-rw-r--r--chef/Rakefile2
-rw-r--r--chef/lib/chef.rb2
5 files changed, 46 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 05109d1400..2a042e8e9e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,45 @@
+Sat Aug 8 4:45:50 NZST 2009
+
+Release Notes - Chef - Version 0.7.6
+
+** Bug
+ * [CHEF-87] - File specificity (preferred file) is broken by dotfiles
+ * [CHEF-357] - groupmod error with chef (0.6.2)
+ * [CHEF-371] - Link provider will not delete symbolic link if target does not exist
+ * [CHEF-394] - Last Check-in is only updated on the first run of chef-client, but not on later runs
+ * [CHEF-400] - Chef::Application#fatal! should log output to STDERR aswell, so errors are more plain
+ * [CHEF-406] - typos in specs, fix resulting failures
+ * [CHEF-407] - CHEF-308 breaks mount provider remote filesystem usage
+ * [CHEF-409] - run_list specified in json doesn't run the file caching step before trying to find recipes
+ * [CHEF-410] - Be able to have major, minor, revision for metadata version.
+ * [CHEF-411] - When a recipe is in the run_list and included, it may be run twice
+ * [CHEF-413] - why did chef gem get so big?
+ * [CHEF-415] - Error message clarity when a registration exists for the same hostname but the local secret doesn't exist / match
+ * [CHEF-416] - API roles, search integration features have failing steps
+ * [CHEF-423] - gentoo service provider enable action always runs for long service names
+ * [CHEF-431] - ChefServerSlice::OpenidServer#index should treat content_type as a symbol
+ * [CHEF-432] - chef-server-slice views should use slice_url instead of url
+ * [CHEF-433] - rake install should not copy .git files in addition to .svn
+ * [CHEF-436] - Default attributes from a role should not be written into the role's nodes
+ * [CHEF-437] - if manage_home is set to true but no home is set then home dir becomes -m
+ * [CHEF-439] - service resource - inherited file handle weirdness
+ * [CHEF-458] - File Cache stub missing
+ * [CHEF-463] - chef-solo and chef-client should display the version with --version (and optionally, -v)
+ * [CHEF-465] - chef-solo tries to get templates from localhost:4000
+ * [CHEF-467] - chef-server web ui doesn't load assets properly with 0.7.5
+
+** Improvement
+ * [CHEF-373] - include specs in chef gem
+ * [CHEF-418] - Update readme for new integration tests
+ * [CHEF-427] - Minor cleanup of JSON Attribute editor
+ * [CHEF-430] - Add support for HTTP Basic Authentication to Chef::REST
+ * [CHEF-448] - allow a default URL definition in client.rb
+
+** New Feature
+ * [CHEF-274] - Add support for multiple named queues on a single stompserver
+ * [CHEF-414] - add symlink owner/group support
+ * [CHEF-420] - Decouple usage of -s from -i
+
Fri Jun 26 1:52:15 NZST 2009
Release Notes - Chef - Version 0.7.4
diff --git a/chef-server-slice/Rakefile b/chef-server-slice/Rakefile
index f964c9b655..0a435d9c43 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.5"
+CHEF_SERVER_VERSION="0.7.6"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/Rakefile b/chef-server/Rakefile
index d2a9e6a74e..3540561958 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.5"
+CHEF_SERVER_VERSION = "0.7.6"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef/Rakefile b/chef/Rakefile
index 603ba362b9..7a627e044a 100644
--- a/chef/Rakefile
+++ b/chef/Rakefile
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
require './tasks/rspec.rb'
GEM = "chef"
-CHEF_VERSION = "0.7.5"
+CHEF_VERSION = "0.7.6"
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 ac46f3bf2b..f45c58b0f8 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.7.5'
+ VERSION = '0.7.6'
end
# Adds a Dir.glob to Ruby 1.8.5, for compat