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

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