Skip to content

Commit 478cd82

Browse files
author
David Heinemeier Hansson
committed
Tagged 1.2.4 for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/tags/rel_1-2-4@7741 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
1 parent a134f8f commit 478cd82

File tree

17 files changed

+33
-20
lines changed

17 files changed

+33
-20
lines changed

actionmailer/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
*1.3.4* (October 4th, 2007)
2+
3+
* Depend on Action Pack 1.13.4
4+
5+
16
*1.3.3* (March 12th, 2007)
27

38
* Depend on Action Pack 1.13.3

actionmailer/Rakefile

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

57-
s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
57+
s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
5858

5959
s.has_rdoc = true
6060
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 = 1
44
MINOR = 3
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-
*SVN*
1+
*1.13.4* (October 4th, 2007)
22

33
* Only accept session ids from cookies, prevents session fixation attacks. [bradediger]
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', '= 1.4.2' + PKG_BUILD)
78+
s.add_dependency('activesupport', '= 1.4.3' + 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 = 1
44
MINOR = 13
5-
TINY = 3
5+
TINY = 4
66

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

actionwebservice/CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
*1.2.4* (October 4th, 2007)
2+
3+
* Depend on Action Pack 1.13.4
4+
5+
* Depend on Active Record 1.15.4
6+
7+
18
*1.2.3* (March 12th, 2007)
29

310
* Depend on Action Pack 1.13.3

actionwebservice/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
7171
s.rubyforge_project = "aws"
7272
s.homepage = "http://www.rubyonrails.org"
7373

74-
s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
75-
s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
74+
s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
75+
s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
7676

7777
s.has_rdoc = true
7878
s.requirements << 'none'

actionwebservice/lib/action_web_service/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionWebService
22
module VERSION #:nodoc:
33
MAJOR = 1
44
MINOR = 2
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-
*SVN*
1+
*1.15.4* (October 4th, 2007)
22

33
* Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo]
44

activerecord/Rakefile

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

154-
s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
154+
s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
155155

156156
s.files.delete "test/fixtures/fixture_database.sqlite"
157157
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 = 1
44
MINOR = 15
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-
*SVN*
1+
*1.4.3* (October 4th, 2007)
22

33
* Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. #8453 [candlerb, Jeremy Kemper]
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 = 1
44
MINOR = 4
5-
TINY = 2
5+
TINY = 3
66

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

railties/CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*SVN*
1+
*1.2.4* (October 4th, 2007)
22

33
* Add a new rake task to aid debugging of named routes.
44

@@ -14,6 +14,7 @@
1414

1515
* Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
1616

17+
1718
*1.2.3* (March 12th, 2007)
1819

1920
* Ruby 1.8.6 compatibility fixes. Upgrade rake dependency to 0.7.2.

railties/Rakefile

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

290290
s.add_dependency('rake', '>= 0.7.2')
291-
s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
292-
s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
293-
s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
294-
s.add_dependency('actionmailer', '= 1.3.3' + PKG_BUILD)
295-
s.add_dependency('actionwebservice', '= 1.2.3' + PKG_BUILD)
291+
s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
292+
s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
293+
s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
294+
s.add_dependency('actionmailer', '= 1.3.4' + PKG_BUILD)
295+
s.add_dependency('actionwebservice', '= 1.2.4' + PKG_BUILD)
296296

297297
s.rdoc_options << '--exclude' << '.'
298298
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 = 1
44
MINOR = 2
5-
TINY = 3
5+
TINY = 4
66

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

0 commit comments

Comments
 (0)