174c90ccde
* This will be changed to the most recent git hash for next round, at least making accurate for now.
14 lines
287 B
Ruby
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
|