Files
metasploit-gs/lib/metasploit/framework/version.rb
T
2014-07-31 23:43:46 -05:00

14 lines
287 B
Ruby

module Metasploit
module Framework
module Version
MAJOR = 4
MINOR = 10
PATCH = 0
PRERELEASE = 'dev'
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}-#{Version::PRERELEASE}"
GEM_VERSION = VERSION.gsub('-', '.pre.')
end
end