From e3e5d60bcd639da34333514562f82f89fd0c00f0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 19 Oct 2005 14:01:40 +0000 Subject: [PATCH] Really ready for push git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2686 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 5 +++++ actionmailer/lib/action_mailer/version.rb | 2 +- actionwebservice/CHANGELOG | 5 +++++ actionwebservice/lib/action_web_service/version.rb | 2 +- railties/Rakefile | 4 ++-- 5 files changed, 14 insertions(+), 4 deletions(-) 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