Bumped version number in preparation for a release.

This commit is contained in:
Jeremy Cook
2014-04-18 10:47:58 -04:00
parent 9a8788fb80
commit b60703d496

View File

@@ -4,9 +4,9 @@ module Homesick
# String of the entire version number # String of the entire version number
module Version module Version
MAJOR = 1 MAJOR = 1
MINOR = 0 MINOR = 1
PATCH = 0 PATCH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}" STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end end
end end