diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-12-07 13:37:13 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-12-07 13:37:13 +0000 |
commit | 1acd54a5b44639ecb0bd0e37545a2e862df2b9a7 (patch) | |
tree | 7478157aca4a4acc45120aa5000573e1e17d210c | |
parent | 7f02cdd4a0cf4596e0f6fe99849486c43b87024a (diff) | |
download | rails-1acd54a5b44639ecb0bd0e37545a2e862df2b9a7.tar.gz rails-1acd54a5b44639ecb0bd0e37545a2e862df2b9a7.tar.bz2 rails-1acd54a5b44639ecb0bd0e37545a2e862df2b9a7.zip |
Make ready for 2.0.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8330 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionmailer/CHANGELOG | 5 | ||||
-rwxr-xr-x | actionmailer/Rakefile | 2 | ||||
-rw-r--r-- | actionmailer/lib/action_mailer/version.rb | 2 | ||||
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/Rakefile | 2 | ||||
-rw-r--r-- | actionpack/lib/action_pack/version.rb | 2 | ||||
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/version.rb | 2 | ||||
-rw-r--r-- | activeresource/CHANGELOG | 2 | ||||
-rw-r--r-- | activeresource/Rakefile | 2 | ||||
-rw-r--r-- | activeresource/lib/active_resource/version.rb | 2 | ||||
-rw-r--r-- | activesupport/CHANGELOG | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 | ||||
-rw-r--r-- | railties/CHANGELOG | 5 | ||||
-rw-r--r-- | railties/Rakefile | 10 | ||||
-rw-r--r-- | railties/lib/rails/version.rb | 2 |
16 files changed, 24 insertions, 22 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index a50b198c4e..b1fcb0ff0e 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*2.0.0* (December 6th, 2007) +*2.0.1* (December 7th, 2007) * Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick] @@ -17,9 +17,6 @@ * Fix silent failure of rxml templates. #9879 [jstewart] - -*2.0.0 [Preview Release]* (September 29th, 2007) - * Fix attachment decoding when using the TMail C extension. #7861 [orangechicken] * Increase mail delivery test coverage. #8692 [kamal] diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 26911429ed..b87361b4f6 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', '= 2.0.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 2.0.1' + 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 c38db57e9a..82136b6e93 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 = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index f1e2aa455a..f9f3fe2cd1 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*2.0.0* (December 6th, 2007) +*2.0.1* (December 7th, 2007) * Fixed send_file/binary_content for testing #8044 [tolsen] diff --git a/actionpack/Rakefile b/actionpack/Rakefile index c544d47e34..7c3757e0c7 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', '= 2.0.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.0.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 d63c72f142..1f978de7dc 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 = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 7b51c57240..54d03afc64 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', '= 2.0.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.0.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 da83c707ce..41b234f054 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 = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG index 5919931b29..02769db088 100644 --- a/activeresource/CHANGELOG +++ b/activeresource/CHANGELOG @@ -1,4 +1,4 @@ -*2.0.0* (December 6th, 2007) +*2.0.1* (December 7th, 2007) * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou] diff --git a/activeresource/Rakefile b/activeresource/Rakefile index f643593732..7b0b8fd8d8 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', '= 2.0.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.0.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 79ea4f2539..a59c9d2936 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 = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 7c08919755..40fdbbbf45 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*2.0.0* (December 6th, 2007) +*2.0.1* (December 7th, 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 d44e7cfdfa..913198f1e2 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 = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 060e195831..8b47387284 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,3 +1,8 @@ +*2.0.1* (December 7th, 2007) + +* Fixed Active Record bug + + *2.0.0* (December 6th, 2007) * The test task stops with a warning if you have pending migrations. #10377 [Josh Knowles] diff --git a/railties/Rakefile b/railties/Rakefile index 5e89a1b42c..fc32f57c88 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', '= 2.0.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 2.0.0' + PKG_BUILD) - s.add_dependency('actionpack', '= 2.0.0' + PKG_BUILD) - s.add_dependency('actionmailer', '= 2.0.0' + PKG_BUILD) - s.add_dependency('activeresource', '= 2.0.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.0.1' + PKG_BUILD) + s.add_dependency('activerecord', '= 2.0.1' + PKG_BUILD) + s.add_dependency('actionpack', '= 2.0.1' + PKG_BUILD) + s.add_dependency('actionmailer', '= 2.0.1' + PKG_BUILD) + s.add_dependency('activeresource', '= 2.0.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 db1f8a1c63..780a1d5385 100644 --- a/railties/lib/rails/version.rb +++ b/railties/lib/rails/version.rb @@ -2,7 +2,7 @@ module Rails module VERSION #:nodoc: MAJOR = 2 MINOR = 0 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end |