Skip to content

Commit

Permalink
Prepare for 1.2.6
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/1-2-stable@8195 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
NZKoz committed Nov 24, 2007
1 parent 63e9687 commit d421bb9
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 13 deletions.
4 changes: 4 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,3 +1,7 @@
*1.3.6* (October 12th, 2007)

* Depend on Action Pack 1.13.6

*1.3.5* (October 12th, 2007)

* Depend on Action Pack 1.13.5
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.5' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.6' + 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 = 5
TINY = 6

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

* Correct Broken Fix for session_fixation attacks

* Ensure that cookies handle array values correctly. Closes #9937 [queso]

*1.13.5* (October 12th, 2007)
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 = 5
TINY = 6

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

* Depend on Action Pack 1.13.6

* Depend on Active Record 1.15.6


*1.2.5* (October 12th, 2007)

* Depend on Action Pack 1.13.5
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.5' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.5' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.6' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.6' + 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 = 5
TINY = 6

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

* Allow association redefinition in subclasses. #9346 [wildchild]

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 = 5
TINY = 6

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
8 changes: 4 additions & 4 deletions railties/Rakefile
Expand Up @@ -289,10 +289,10 @@ spec = Gem::Specification.new do |s|

s.add_dependency('rake', '>= 0.7.2')
s.add_dependency('activesupport', '= 1.4.4' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.5' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.5' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.3.5' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.2.5' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.6' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.6' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.3.6' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.2.6' + 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 = 5
TINY = 6

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

0 comments on commit d421bb9

Please sign in to comment.