lib/ballast/version.rb in ballast-1.9.3 vs lib/ballast/version.rb in ballast-2.0.0
- old
+ new
@@ -8,16 +8,16 @@
# The current version of ballast, according to semantic versioning.
#
# @see http://semver.org
module Version
# The major version.
- MAJOR = 1
+ MAJOR = 2
# The minor version.
- MINOR = 9
+ MINOR = 0
# The patch version.
- PATCH = 3
+ PATCH = 0
# The current version of ballast.
STRING = [MAJOR, MINOR, PATCH].compact.join(".")
end
end