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

14 lines
287 B
Ruby
Raw Normal View History

2014-06-02 12:54:46 -05:00
module Metasploit
module Framework
module Version
MAJOR = 4
2014-07-31 23:43:46 -05:00
MINOR = 10
PATCH = 1
2014-06-02 12:54:46 -05:00
PRERELEASE = 'dev'
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}-#{Version::PRERELEASE}"
2014-07-16 11:13:14 -05:00
GEM_VERSION = VERSION.gsub('-', '.pre.')
2014-06-02 12:54:46 -05:00
end
end