CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/api/version.rb
Views: 11623
1
module Metasploit
2
module Framework
3
module API
4
# @note This is a lie. The API version is not semantically version and it's version has actually never changed
5
# even though API changes have occurred. DO NOT base compatibility on this version.
6
module Version
7
MAJOR = 1
8
MINOR = 0
9
PATCH = 0
10
end
11
12
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}"
13
GEM_VERSION = Rex::Version.new(VERSION)
14
end
15
end
16
end
17
18