aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/version.rb
blob: 5b5d98161c2125cd4bcbe8c1bb753231025da76f (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionMailer
  module Version #:nodoc:
    MAJOR = 1
    MINOR = 1
    TINY  = 0

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