From 54a75de3ecabf5dd07a60c27d21fc4e0671904c0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 29 Nov 2007 00:27:53 +0000 Subject: [PATCH] Prep for RC2 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 2 +- actionmailer/Rakefile | 2 +- .../action_mailer/vendor/tmail-1.1.0/tmail/version.rb | 2 +- actionmailer/lib/action_mailer/version.rb | 2 +- actionpack/CHANGELOG | 3 ++- actionpack/Rakefile | 2 +- actionpack/lib/action_pack/version.rb | 2 +- activerecord/CHANGELOG | 2 +- activerecord/Rakefile | 2 +- activerecord/lib/active_record/version.rb | 2 +- activeresource/CHANGELOG | 3 +++ activeresource/Rakefile | 2 +- activeresource/lib/active_resource/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 +- 18 files changed, 25 insertions(+), 21 deletions(-) diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 92dc24726b..220c16ca3b 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick] diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 2f0fa63baa..ab46b1bfae 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.99.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb b/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb index 175ea92538..14df4b06eb 100644 --- a/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb +++ b/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb @@ -31,7 +31,7 @@ module TMail #:nodoc: module VERSION #:nodoc: MAJOR = 1 MINOR = 1 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 12bb913d4c..32897bc890 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 = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 141dcca5e6..7f8affe34c 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Koz] #10292 @@ -124,6 +124,7 @@ * Only accept session ids from cookies, prevents session fixation attacks. [bradediger] + *2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.12.2 - 1.13.3] * Fixed that render template did not honor exempt_from_layout #9698 [pezra] diff --git a/actionpack/Rakefile b/actionpack/Rakefile index f6d2587427..9bd8fbe314 100644 --- 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.99.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + 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 a58f8aad7b..9e62961a80 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 = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 1cf65193a6..f2f79fd823 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Foxy fixtures: support single-table inheritance. #10234 [tom] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index bff4561cf1..766cfaa95f 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -172,7 +172,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.99.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + 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 f32cb5b2f3..c111082ffc 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 = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG index 7527424070..a84dfd6ed7 100644 --- a/activeresource/CHANGELOG +++ b/activeresource/CHANGELOG @@ -1,7 +1,10 @@ +*2.0.0 [RC2]* (November 28th, 2007) + * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou] * Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh] + *2.0.0 [Preview Release]* (September 29th, 2007) * Added one-off declarations of mock behavior [DHH]. Example: diff --git a/activeresource/Rakefile b/activeresource/Rakefile index 5a3f8c9768..88669141d8 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.99.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) s.require_path = 'lib' s.autorequire = 'active_resource' diff --git a/activeresource/lib/active_resource/version.rb b/activeresource/lib/active_resource/version.rb index 5431ab0e13..ca8fcdb598 100644 --- a/activeresource/lib/active_resource/version.rb +++ b/activeresource/lib/active_resource/version.rb @@ -2,7 +2,7 @@ module ActiveResource module VERSION #:nodoc: MAJOR = 1 MINOR = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index c4886f37f7..89fd5b156a 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Added Array#from and Array#to that behaves just from String#from and String#to [DHH] diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 503294bbaf..008b920714 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 = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/CHANGELOG b/railties/CHANGELOG index e081bff410..8d38fdd813 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai] diff --git a/railties/Rakefile b/railties/Rakefile index 3ffe5a2bdc..ea2a2c8d66 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.7.2') - s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.99.0' + PKG_BUILD) - s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD) - s.add_dependency('actionmailer', '= 1.99.0' + PKG_BUILD) - s.add_dependency('activeresource', '= 1.99.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.99.1' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.99.1' + PKG_BUILD) + s.add_dependency('activeresource', '= 1.99.1' + 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 ec14a8784d..5d4d6a0328 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 = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end