Files
metasploit-gs/lib/metasploit/framework/version.rb
T
David Maloney 4d53c18ac4 fix version
2014-06-06 12:07:22 -05:00

13 lines
241 B
Ruby

module Metasploit
module Framework
module Version
MAJOR = 4
MINOR = 9
PATCH = 3
PRERELEASE = 'dev'
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}-#{Version::PRERELEASE}"
end
end