lib/cucumber/version.rb in aslakhellesoy-cucumber-0.1.13 vs lib/cucumber/version.rb in aslakhellesoy-cucumber-0.1.13.2
- old
+ new
@@ -1,9 +1,10 @@
module Cucumber #:nodoc:
class VERSION #:nodoc:
MAJOR = 0
MINOR = 1
TINY = 13
+ PATCH = 3 # Set to nil for official release
- STRING = [MAJOR, MINOR, TINY].join('.')
+ STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
end
end