aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 12:48:14 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 12:48:14 +0000
commita0d31fcd81ef690adf56568aa954a07081c6aecc (patch)
tree90107baf3a3b0415e4ffd6c6f976c1dcfc190b4c
parentbd11ca377540c15c9dda6f943e14234e10e37f31 (diff)
downloadrails-a0d31fcd81ef690adf56568aa954a07081c6aecc.tar.gz
rails-a0d31fcd81ef690adf56568aa954a07081c6aecc.tar.bz2
rails-a0d31fcd81ef690adf56568aa954a07081c6aecc.zip
Pegged the versions for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1739 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-xactionmailer/Rakefile4
-rwxr-xr-xactionmailer/lib/action_mailer.rb2
-rwxr-xr-xactionpack/Rakefile4
-rw-r--r--actionwebservice/Rakefile8
-rwxr-xr-xactiverecord/Rakefile4
-rw-r--r--activesupport/Rakefile2
-rw-r--r--railties/Rakefile12
7 files changed, 18 insertions, 18 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index 2c43ee5445..3b17da5caf 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.9.1' + PKG_BUILD
+PKG_VERSION = '1.0.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -52,7 +52,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.8.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionmailer/lib/action_mailer.rb b/actionmailer/lib/action_mailer.rb
index 9b9b514dad..4bc7e83857 100755
--- a/actionmailer/lib/action_mailer.rb
+++ b/actionmailer/lib/action_mailer.rb
@@ -28,7 +28,7 @@ rescue LoadError
require File.dirname(__FILE__) + '/../../actionpack/lib/action_controller'
rescue LoadError
require 'rubygems'
- require_gem 'actionpack', '>= 1.6.0'
+ require_gem 'actionpack', '>= 1.9.0'
end
end
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 386a66ddb3..3c93262d1c 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 = '1.8.1' + PKG_BUILD
+PKG_VERSION = '1.9.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -61,7 +61,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.0.4' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index a524a41a26..479205691c 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -9,7 +9,7 @@ require 'fileutils'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionwebservice'
-PKG_VERSION = '0.7.1' + PKG_BUILD
+PKG_VERSION = '0.8.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -62,9 +62,9 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.8.1' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.10.1' + PKG_BUILD)
- s.add_dependency('activesupport', '= 1.0.4' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 57b583b007..b0a41d373e 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.10.1' + PKG_BUILD
+PKG_VERSION = '1.11.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -82,7 +82,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end
- s.add_dependency('activesupport', '= 1.0.4' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 4469bedbf0..c71967a624 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -5,7 +5,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
-PKG_VERSION = '1.0.4' + PKG_BUILD
+PKG_VERSION = '1.1.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
diff --git a/railties/Rakefile b/railties/Rakefile
index f2ed7d9022..ec706f827d 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -9,7 +9,7 @@ require 'rbconfig'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'rails'
-PKG_VERSION = '0.12.1' + PKG_BUILD
+PKG_VERSION = '0.13.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -251,11 +251,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.5.3')
- s.add_dependency('activesupport', '= 1.0.4' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.10.1' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.8.1' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 0.9.1' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.7.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.0.0' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.8.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false