lib/metasploit/concern/version.rb in metasploit-concern-0.5.1 vs lib/metasploit/concern/version.rb in metasploit-concern-1.0.0.pre.rails.pre.4.0

- old
+ new

@@ -1,14 +1,16 @@ module Metasploit module Concern # Holds components of {VERSION} as defined by {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0}. module Version # The major version number. - MAJOR = 0 + MAJOR = 1 # The minor version number, scoped to the {MAJOR} version number. - MINOR = 5 - # The patch number, scoped to the {MAJOR} and {MINOR} version numbers. - PATCH = 1 + MINOR = 0 + # The patch number, scoped to the {MINOR} version number. + PATCH = 0 + # the prerelease identifier + PRERELEASE = 'rails-4.0' # 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