Files
metasploit-gs/lib/metasploit/framework/version.rb
T

13 lines
241 B
Ruby
Raw Normal View History

2014-06-02 12:54:46 -05:00
module Metasploit
module Framework
module Version
MAJOR = 4
MINOR = 9
2014-06-06 12:07:22 -05:00
PATCH = 3
2014-06-02 12:54:46 -05:00
PRERELEASE = 'dev'
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}-#{Version::PRERELEASE}"
end
end