diff options
-rw-r--r-- | actionmailer/CHANGELOG | 2 | ||||
-rwxr-xr-x | actionmailer/Rakefile | 2 | ||||
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rwxr-xr-x | actionpack/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/CHANGELOG | 2 | ||||
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | railties/Rakefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index c552c2b711..b1195d84e9 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*0.5* * Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example: diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index b9b8ef0651..a4ef1a94cb 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionmailer' -PKG_VERSION = '0.4.0' + PKG_BUILD +PKG_VERSION = '0.5.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default Task" diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index e60b7eb0da..3043e95352 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.0* * Added that controllers will now attempt to require a model dependency with their name and in a singular attempt for their name. So both PostController and PostsController will automatically have the post.rb model required. If no model is found, no error is raised, diff --git a/actionpack/Rakefile b/actionpack/Rakefile index e26f488bf7..345e235d52 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionpack' -PKG_VERSION = '0.9.5' + PKG_BUILD +PKG_VERSION = '1.0.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default Task" diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index bd6a856285..82f9d88992 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*CVS* +*1.2.0* * Added Base.validates_inclusion_of that validates whether the value of the specified attribute is available in a particular enumerable object. [what-a-day] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 9ffd707c08..b79d78ad23 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'activerecord' -PKG_VERSION = '1.1.0' + PKG_BUILD +PKG_VERSION = '1.2.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_FILES = FileList[ diff --git a/railties/Rakefile b/railties/Rakefile index 8c1a06e785..619139c1c3 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -9,7 +9,7 @@ require 'date' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'rails' -PKG_VERSION = '0.8.5' + PKG_BUILD +PKG_VERSION = '0.9.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" |