Files
metasploit-gs/lib/metasploit/framework/api/version.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
486 B
Ruby
Raw Normal View History

2014-08-01 21:43:14 -05:00
module Metasploit
module Framework
module API
2022-04-25 11:17:14 +01:00
# @note This is a lie. The API version is not semantically version and it's version has actually never changed
2024-01-06 15:54:49 -05:00
# even though API changes have occurred. DO NOT base compatibility on this version.
2014-08-01 21:43:14 -05:00
module Version
MAJOR = 1
MINOR = 0
PATCH = 0
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}"
2021-02-17 12:33:59 +00:00
GEM_VERSION = Rex::Version.new(VERSION)
2014-08-01 21:43:14 -05:00
end
end
2021-02-17 12:33:59 +00:00
end