diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 6f6f240ef8..16d7d3b318 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,3 +1,8 @@ +*1.1.1* (October 19th, 2005) + +* Upgraded to Action Pack 1.10.1 + + *1.1.0* (October 16th, 2005) * Update and extend documentation (rdoc) diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 5b5d98161c..4dbc364e20 100644 --- a/actionmailer/lib/action_mailer/version.rb +++ b/actionmailer/lib/action_mailer/version.rb @@ -2,7 +2,7 @@ module ActionMailer module Version #:nodoc: MAJOR = 1 MINOR = 1 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 51ecf89b77..50ac6d7015 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,8 @@ +*0.9.1* (October 19th, 2005) + +* Upgraded to Action Pack 1.10.1 and Active Record 1.12.1 + + *0.9.0* (October 16th, 2005) * Fix invalid XML request generation bug in test_invoke [Ken Barker] diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb index 4f2f6939db..17f5981177 100644 --- a/actionwebservice/lib/action_web_service/version.rb +++ b/actionwebservice/lib/action_web_service/version.rb @@ -2,7 +2,7 @@ module ActionWebService module Version MAJOR = 0 MINOR = 9 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/Rakefile b/railties/Rakefile index c9b0dd217e..d05468521a 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -276,8 +276,8 @@ spec = Gem::Specification.new do |s| s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD) s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD) s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD) - s.add_dependency('actionmailer', '= 1.1.0' + PKG_BUILD) - s.add_dependency('actionwebservice', '= 0.9.0' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.1.1' + PKG_BUILD) + s.add_dependency('actionwebservice', '= 0.9.1' + PKG_BUILD) s.rdoc_options << '--exclude' << '.' s.has_rdoc = false