1module 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 16end 17 18