diff options
author | Carl Lerche <carllerche@mac.com> | 2009-06-30 14:37:12 -0700 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2009-06-30 14:37:12 -0700 |
commit | db3de78a83379ab2a58e0d29fb10622b813a4d44 (patch) | |
tree | 33a948a9b2402c965745dde584c98cc7e5af2054 /actionmailer | |
parent | 132e6d00638dc6370fafa0f1377d3bca17eee2d1 (diff) | |
download | rails-db3de78a83379ab2a58e0d29fb10622b813a4d44.tar.gz rails-db3de78a83379ab2a58e0d29fb10622b813a4d44.tar.bz2 rails-db3de78a83379ab2a58e0d29fb10622b813a4d44.zip |
Bump up the version to 3.0.pre
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/Rakefile | 2 | ||||
-rw-r--r-- | actionmailer/lib/action_mailer/version.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 5475ffa493..ebcca0d246 100644 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -60,7 +60,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionmailer" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 2.3.2' + PKG_BUILD) + s.add_dependency('actionpack', '= 3.0.pre' + 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 08ff0d2ffb..0f2b58552b 100644 --- a/actionmailer/lib/action_mailer/version.rb +++ b/actionmailer/lib/action_mailer/version.rb @@ -1,8 +1,8 @@ module ActionMailer module VERSION #:nodoc: - MAJOR = 2 - MINOR = 3 - TINY = 2 + MAJOR = 3 + MINOR = 0 + TINY = "pre" STRING = [MAJOR, MINOR, TINY].join('.') end |