Files
metasploit-gs/lib/metasploit/framework/version.rb
T
2014-12-15 14:42:09 -06:00

14 lines
287 B
Ruby

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