Skip to content

Commit

Permalink
Tagged 1.2.4 for release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/tags/rel_1-2-4@7741 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Oct 5, 2007
1 parent a134f8f commit 478cd82
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 20 deletions.
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,3 +1,8 @@
*1.3.4* (October 4th, 2007)

* Depend on Action Pack 1.13.4


*1.3.3* (March 12th, 2007)

* Depend on Action Pack 1.13.3
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Expand Up @@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"

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

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

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG
@@ -1,4 +1,4 @@
*SVN*
*1.13.4* (October 4th, 2007)

* Only accept session ids from cookies, prevents session fixation attacks. [bradediger]

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

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

s.require_path = 'lib'
s.autorequire = 'action_controller'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 13
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
7 changes: 7 additions & 0 deletions actionwebservice/CHANGELOG
@@ -1,3 +1,10 @@
*1.2.4* (October 4th, 2007)

* Depend on Action Pack 1.13.4

* Depend on Active Record 1.15.4


*1.2.3* (March 12th, 2007)

* Depend on Action Pack 1.13.3
Expand Down
4 changes: 2 additions & 2 deletions actionwebservice/Rakefile
Expand Up @@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"

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

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionwebservice/lib/action_web_service/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionWebService
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
@@ -1,4 +1,4 @@
*SVN*
*1.15.4* (October 4th, 2007)

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

Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Expand Up @@ -151,7 +151,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.4.2' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.4.3' + 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
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 15
TINY = 3
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG
@@ -1,4 +1,4 @@
*SVN*
*1.4.3* (October 4th, 2007)

* Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. #8453 [candlerb, Jeremy Kemper]

Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
MINOR = 4
TINY = 2
TINY = 3

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
3 changes: 2 additions & 1 deletion railties/CHANGELOG
@@ -1,4 +1,4 @@
*SVN*
*1.2.4* (October 4th, 2007)

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

Expand All @@ -14,6 +14,7 @@

* 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]


*1.2.3* (March 12th, 2007)

* Ruby 1.8.6 compatibility fixes. Upgrade rake dependency to 0.7.2.
Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Expand Up @@ -288,11 +288,11 @@ spec = Gem::Specification.new do |s|
EOF

s.add_dependency('rake', '>= 0.7.2')
s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.3' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.3.3' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.2.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.3.4' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.2.4' + PKG_BUILD)

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

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

0 comments on commit 478cd82

Please sign in to comment.