lib/metasploit/model/version.rb in metasploit-model-0.30.0-java vs lib/metasploit/model/version.rb in metasploit-model-0.30.1.pre.rspec.pre.3.pre.1

- old
+ new

@@ -5,10 +5,12 @@ # The major version number. MAJOR = 0 # The minor version number, scoped to the {MAJOR} version number. MINOR = 30 # The patch number, scoped to the {MAJOR} and {MINOR} version numbers. - PATCH = 0 + PATCH = 1 + # The prerelease version, scoped to the {MAJOR}, {MINOR}, and {PATCH} version numbers. + PRERELEASE = 'rspec-3-1' # 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