Skip to content

Commit e5c52a3

Browse files
author
David Heinemeier Hansson
committed
Prepare for 2.0.4 release
1 parent 9b251b6 commit e5c52a3

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

actionmailer/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Less verbose mail logging: just recipients for :info log level; the whole email for :debug only. #8000 [iaddict, Tarmo Tänav]
44

actionmailer/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
5555
s.rubyforge_project = "actionmailer"
5656
s.homepage = "http://www.rubyonrails.org"
5757

58-
s.add_dependency('actionpack', '= 2.0.3' + PKG_BUILD)
58+
s.add_dependency('actionpack', '= 2.0.4' + PKG_BUILD)
5959

6060
s.has_rdoc = true
6161
s.requirements << 'none'

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionMailer
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

actionpack/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Avoid remote_ip spoofing. [Brian Candler]
44

actionpack/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ spec = Gem::Specification.new do |s|
7575
s.has_rdoc = true
7676
s.requirements << 'none'
7777

78-
s.add_dependency('activesupport', '= 2.0.3' + PKG_BUILD)
78+
s.add_dependency('activesupport', '= 2.0.4' + PKG_BUILD)
7979

8080
s.require_path = 'lib'
8181
s.autorequire = 'action_controller'

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activerecord/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Migrations: create_table supports primary_key_prefix_type. #10314 [student, thechrisoshow]
44

activerecord/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ spec = Gem::Specification.new do |s|
172172
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
173173
end
174174

175-
s.add_dependency('activesupport', '= 2.0.3' + PKG_BUILD)
175+
s.add_dependency('activesupport', '= 2.0.4' + PKG_BUILD)
176176

177177
s.files.delete "test/fixtures/fixture_database.sqlite"
178178
s.files.delete "test/fixtures/fixture_database_2.sqlite"

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveRecord
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activeresource/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Fix small documentation typo. Closes #10670 [l.guidi]
44

activeresource/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
6262
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
6363
end
6464

65-
s.add_dependency('activesupport', '= 2.0.3' + PKG_BUILD)
65+
s.add_dependency('activesupport', '= 2.0.4' + PKG_BUILD)
6666

6767
s.require_path = 'lib'
6868
s.autorequire = 'active_resource'

activeresource/lib/active_resource/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveResource
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activesupport/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Remove :nodoc: entries around the ActiveSupport test/unit assertions. #10946 [dancroak, jamesh]
44

activesupport/lib/active_support/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveSupport
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

railties/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*2.0.3* (12th May 2008)
1+
*2.0.4* (2nd September 2008)
22

33
* Resurrect WordNet synonym lookups. #10710 [tom./, matt]
44

railties/Rakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,11 +313,11 @@ spec = Gem::Specification.new do |s|
313313
EOF
314314

315315
s.add_dependency('rake', '>= 0.7.2')
316-
s.add_dependency('activesupport', '= 2.0.3' + PKG_BUILD)
317-
s.add_dependency('activerecord', '= 2.0.3' + PKG_BUILD)
318-
s.add_dependency('actionpack', '= 2.0.3' + PKG_BUILD)
319-
s.add_dependency('actionmailer', '= 2.0.3' + PKG_BUILD)
320-
s.add_dependency('activeresource', '= 2.0.3' + PKG_BUILD)
316+
s.add_dependency('activesupport', '= 2.0.4' + PKG_BUILD)
317+
s.add_dependency('activerecord', '= 2.0.4' + PKG_BUILD)
318+
s.add_dependency('actionpack', '= 2.0.4' + PKG_BUILD)
319+
s.add_dependency('actionmailer', '= 2.0.4' + PKG_BUILD)
320+
s.add_dependency('activeresource', '= 2.0.4' + PKG_BUILD)
321321

322322
s.rdoc_options << '--exclude' << '.'
323323
s.has_rdoc = false

railties/lib/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Rails
22
module VERSION #:nodoc:
33
MAJOR = 2
44
MINOR = 0
5-
TINY = 3
5+
TINY = 4
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

0 commit comments

Comments
 (0)