Skip to content

Commit

Permalink
Prepare for 2.0.2 release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8419 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Dec 16, 2007
1 parent 1427a49 commit 69edebf
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 19 deletions.
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
*2.0.2* (December 16th, 2007)

* Included in Rails 2.0.2


*2.0.1* (December 7th, 2007)

* Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick]
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.0.2' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*SVN*
*2.0.2* (December 16th, 2007)

* Fixed that ActionView#file_exists? would be incorrect if @first_render is set #10569 [dbussink]

Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'

s.add_dependency('activesupport', '= 2.0.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.0.2' + PKG_BUILD)

s.require_path = 'lib'
s.autorequire = 'action_controller'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*SVN*
*2.0.2* (December 16th, 2007)

* Ensure optimistic locking handles nil #lock_version values properly. Closes #10510 [rick]

Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.0.2' + PKG_BUILD)

s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activeresource/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*SVN*
*2.0.2* (December 16th, 2007)

* Added more specific exceptions for 400, 401, and 403 (all descending from ClientError so existing rescues will work) #10326 [trek]

Expand Down
2 changes: 1 addition & 1 deletion activeresource/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.0.2' + PKG_BUILD)

s.require_path = 'lib'
s.autorequire = 'active_resource'
Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*SVN*
*2.0.2* (December 16th, 2007)

* Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [DHH]

Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s|
EOF

s.add_dependency('rake', '>= 0.7.2')
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.add_dependency('activesupport', '= 2.0.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.0.2' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.0.2' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.0.2' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.0.2' + PKG_BUILD)

s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 0
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit 69edebf

Please sign in to comment.