From d201969236f1696e70c73e12a93229feac69ceda Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 12 Oct 2007 04:00:21 +0000 Subject: [PATCH] Update versions for release git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/1-2-stable@7841 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 5 +++++ actionmailer/Rakefile | 2 +- actionmailer/lib/action_mailer/version.rb | 2 +- actionpack/CHANGELOG | 2 +- actionpack/Rakefile | 2 +- actionpack/lib/action_pack/version.rb | 2 +- actionwebservice/CHANGELOG | 7 +++++++ actionwebservice/Rakefile | 4 ++-- actionwebservice/lib/action_web_service/version.rb | 2 +- activerecord/CHANGELOG | 5 +++++ activerecord/Rakefile | 2 +- activerecord/lib/active_record/version.rb | 2 +- activesupport/CHANGELOG | 2 +- activesupport/lib/active_support/version.rb | 2 +- railties/CHANGELOG | 2 +- railties/Rakefile | 10 +++++----- railties/lib/rails/version.rb | 2 +- 17 files changed, 36 insertions(+), 19 deletions(-) diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 58afd80699c3d..52db0ef287690 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,3 +1,8 @@ +*1.3.5* (October 11th, 2007) + +* Depend on Action Pack 1.13.5 + + *1.3.4* (October 4th, 2007) * Depend on Action Pack 1.13.4 diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index aa1e2d042763f..5bb9f1d0b2ee4 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.13.4' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.13.5' + 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 5a76abc697f32..498af23916da6 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 = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index de29de8f0e16a..9fa97ff3e8a1a 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.13.5* (October 11th, 2007) * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan, Diego Algorta Casamayou] diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 7856936e08ef5..1b2af37304f36 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -75,7 +75,7 @@ spec = Gem::Specification.new do |s| s.has_rdoc = true s.requirements << 'none' - s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.4.4' + 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 9eb61f9289303..e64cc7f29a00d 100644 --- a/actionpack/lib/action_pack/version.rb +++ b/actionpack/lib/action_pack/version.rb @@ -2,7 +2,7 @@ module ActionPack #:nodoc: module VERSION #:nodoc: MAJOR = 1 MINOR = 13 - TINY = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index c86777329ea91..c11e4e493c040 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,10 @@ +*1.2.5* (October 11th, 2007) + +* Depend on Action Pack 1.13.5 + +* Depend on Active Record 1.15.5 + + *1.2.4* (October 4th, 2007) * Depend on Action Pack 1.13.4 diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 80ecf38976837..33d24d6ac7cd0 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.13.5' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.15.5' + 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 61dce62aa3cfb..a1b3d59297cca 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 = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 87fe48b6071d3..91d1cd081d6a8 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,3 +1,8 @@ +*1.15.5* (October 11th, 2007) + +* Depend on Action Pack 1.4.4 + + *1.15.4* (October 4th, 2007) * Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 8b1c5c656584a..e7fd12c43d8fe 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -151,7 +151,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.3' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.4.4' + 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 0df2df797673a..fb1a3716242a4 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 = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 61e0397da0a92..b8ca6987e76fa 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.4.4* (October 11th, 2007) * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan, Diego Algorta Casamayou] diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 82c53090b5288..ff80ec6b1382e 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 = 3 + TINY = 4 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 131ef261a9e7f..9481efa35704e 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.2.5* (October 11th, 2007) * Correct RAILS_GEM_VERSION regexp. Use =version gem requirement instead of ~>version so you don't get surprised by a beta gem in production. This change means upgrading to 1.2.5 will require a boot.rb upgrade. [Jeremy Kemper] diff --git a/railties/Rakefile b/railties/Rakefile index 549b1ba0d3e75..c80f3c580b3db 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -288,11 +288,11 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.7.2') - 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('actionwebservice', '= 1.2.4' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.4.4' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.15.5' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.13.5' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.3.5' + PKG_BUILD) + s.add_dependency('actionwebservice', '= 1.2.5' + 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 03ee0154d823d..9664107c4728d 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 = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end