diff options
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/CHANGELOG | 5 | ||||
-rwxr-xr-x | actionmailer/Rakefile | 2 | ||||
-rw-r--r-- | actionmailer/lib/action_mailer/version.rb | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 16d7d3b318..7a1c1c664c 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,3 +1,8 @@ +*1.1.2* (October 26th, 2005) + +* Upgraded to Action Pack 1.10.2 + + *1.1.1* (October 19th, 2005) * Upgraded to Action Pack 1.10.1 diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index d6cbbf73d7..58fd70ffdc 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -53,7 +53,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionmailer" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 4dbc364e20..e13bf35fca 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 = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end |