lib/metasploit/concern/version.rb in metasploit-concern-0.3.0 vs lib/metasploit/concern/version.rb in metasploit-concern-0.3.1.pre.autoload.pre.compatibility

- old
+ new

@@ -4,11 +4,13 @@ module Version # The major version number. MAJOR = 0 # The minor version number, scoped to the {MAJOR} version number. MINOR = 3 - # The patch number, scoped to the {MINOR} version number. - PATCH = 0 + # The patch number, scoped to the {MAJOR} and {MINOR} version numbers. + PATCH = 1 + # The prerelease version, scoped to the {MAJOR}, {MINOR}, and {PATCH} version numbers. + PRERELEASE = 'autoload-compatibility' # The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the `PRERELEASE` in the # {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format. # # @return [String] '{MAJOR}.{MINOR}.{PATCH}' on master. '{MAJOR}.{MINOR}.{PATCH}-<PRERELEASE>' on any branch