Jean-Philippe Lang 25f8c64f92 Doc update for 0.5.1 release.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@591 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-07-15 11:44:52 +00:00

12 lines
176 B
Ruby

module Redmine
module VERSION #:nodoc:
MAJOR = 0
MINOR = 5
TINY = 1
STRING= [MAJOR, MINOR, TINY].join('.')
def self.to_s; STRING end
end
end