metasploit-framework/lib/metasploit/framework/version.rb

14 lines
287 B
Ruby
Raw Normal View History

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