Files
metasploit-gs/lib/metasploit/framework/api/version.rb
T
George Britton ea1d87af4d Typo fix on line 4
Like -> Lie
2022-04-25 11:17:14 +01:00

17 lines
485 B
Ruby

module Metasploit
module Framework
module API
# @note This is a lie. The API version is not semantically version and it's version has actually never changed
# even though API changes have occured. DO NOT base compatibility on this version.
module Version
MAJOR = 1
MINOR = 0
PATCH = 0
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}"
GEM_VERSION = Rex::Version.new(VERSION)
end
end
end