aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xactionmailer/Rakefile4
-rw-r--r--actionmailer/lib/action_mailer/version.rb2
-rwxr-xr-xactionpack/Rakefile4
-rw-r--r--actionpack/lib/action_pack/version.rb4
-rw-r--r--actionwebservice/Rakefile6
-rw-r--r--actionwebservice/lib/action_web_service/version.rb2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/lib/active_record/version.rb2
-rw-r--r--activeresource/Rakefile4
-rw-r--r--activesupport/lib/active_support/version.rb2
-rw-r--r--railties/Rakefile8
-rw-r--r--railties/lib/rails/version.rb2
12 files changed, 21 insertions, 21 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index 02ef4d6f13..f3a3449a1a 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
@@ -93,4 +93,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
-end \ No newline at end of file
+end
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index 03f075fbce..5a76abc697 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 1
MINOR = 3
- TINY = 3
+ TINY = 4
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 2f6bba80fe..b108a276a4 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
@@ -150,4 +150,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
-end \ No newline at end of file
+end
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index 09eaef6eda..76dacd4353 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -2,8 +2,8 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 13
- TINY = 3
-
+ TINY = 4
+
STRING = [MAJOR, MINOR, TINY].join('.')
end
end
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index e2245c9223..32a34ddd4a 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -72,8 +72,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
@@ -169,4 +169,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
-end \ No newline at end of file
+end
diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb
index ebcb7eaac4..61dce62aa3 100644
--- a/actionwebservice/lib/action_web_service/version.rb
+++ b/actionwebservice/lib/action_web_service/version.rb
@@ -2,7 +2,7 @@ module ActionWebService
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
- TINY = 3
+ TINY = 4
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 16fb28816a..dfb8f6da3d 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -149,7 +149,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.4.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index 4027561d84..0df2df7976 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 15
- TINY = 3
+ TINY = 4
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activeresource/Rakefile b/activeresource/Rakefile
index 321761161f..aad2606655 100644
--- a/activeresource/Rakefile
+++ b/activeresource/Rakefile
@@ -62,7 +62,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.4.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'active_resource'
@@ -130,4 +130,4 @@ task :release => [ :package ] do
puts release_command
system(release_command)
end
-end \ No newline at end of file
+end
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index d254873f71..82c53090b5 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
MINOR = 4
- TINY = 2
+ TINY = 3
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/railties/Rakefile b/railties/Rakefile
index 51469b30ad..e7b5939160 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -312,10 +312,10 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.7.2')
- s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.3.3' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.3.4' + PKG_BUILD)
s.add_dependency('activeresource', '= 0.9.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
diff --git a/railties/lib/rails/version.rb b/railties/lib/rails/version.rb
index b6bd42054a..03ee0154d8 100644
--- a/railties/lib/rails/version.rb
+++ b/railties/lib/rails/version.rb
@@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
- TINY = 3
+ TINY = 4
STRING = [MAJOR, MINOR, TINY].join('.')
end