Files
metasploit-gs/lib/metasploit/framework/version.rb
T
Samuel Huckins 174c90ccde Updating version to match current
* This will be changed to the most recent git hash for next round,
at least making accurate for now.
2015-07-06 10:28:34 -05:00

14 lines
287 B
Ruby

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