From 0633bb865bc755d4a67d6ade8ca588d2f3107b0f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 5 Feb 2006 00:59:57 +0000 Subject: [PATCH] Update versions to match latest from stable git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3543 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/Rakefile | 2 +- actionmailer/lib/action_mailer/version.rb | 2 +- actionpack/Rakefile | 2 +- actionpack/lib/action_pack/version.rb | 2 +- actionwebservice/Rakefile | 4 ++-- actionwebservice/lib/action_web_service/version.rb | 6 +++--- activerecord/Rakefile | 2 +- activerecord/lib/active_record/version.rb | 2 +- activesupport/lib/active_support/version.rb | 2 +- railties/Rakefile | 10 +++++----- railties/lib/rails_version.rb | 6 +++--- 11 files changed, 20 insertions(+), 20 deletions(-) diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index ee9cbe762d..a45995e52f 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionmailer" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 97e97feb60..02c6d83eb0 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 = 1 - TINY = 3 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 441d852bb4..8e9ed0893b 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s| s.has_rdoc = true s.requirements << 'none' - s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD) s.require_path = 'lib' s.autorequire = 'action_controller' diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb index 8e1bc2d0de..7940b1a3e5 100644 --- a/actionpack/lib/action_pack/version.rb +++ b/actionpack/lib/action_pack/version.rb @@ -2,7 +2,7 @@ module ActionPack module VERSION #:nodoc: MAJOR = 1 MINOR = 11 - TINY = 0 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 95a525586d..50c6f25a7a 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb index 8ff8441b13..6e27519d69 100644 --- a/actionwebservice/lib/action_web_service/version.rb +++ b/actionwebservice/lib/action_web_service/version.rb @@ -1,8 +1,8 @@ module ActionWebService module VERSION - MAJOR = 0 - MINOR = 9 - TINY = 3 + MAJOR = 1 + MINOR = 0 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activerecord/Rakefile b/activerecord/Rakefile index aeb1ca9f79..5d146cecdb 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -106,7 +106,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.2.3' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.2.5' + 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 8673f70327..6abddb37d8 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 = 13 - TINY = 0 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index b9d751e744..6b3cff2e23 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 = 2 - TINY = 3 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/Rakefile b/railties/Rakefile index 9a390696fb..446a4456f8 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.6.2') - s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD) - s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) - s.add_dependency('actionmailer', '= 1.1.3' + PKG_BUILD) - s.add_dependency('actionwebservice', '= 0.9.3' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.1.5' + PKG_BUILD) + s.add_dependency('actionwebservice', '= 1.0.0' + PKG_BUILD) s.rdoc_options << '--exclude' << '.' s.has_rdoc = false diff --git a/railties/lib/rails_version.rb b/railties/lib/rails_version.rb index a36f45bd6f..5a68bf8d3e 100644 --- a/railties/lib/rails_version.rb +++ b/railties/lib/rails_version.rb @@ -1,8 +1,8 @@ module Rails module VERSION #:nodoc: - MAJOR = 0 - MINOR = 14 - TINY = 3 + MAJOR = 1 + MINOR = 0 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end