lib/cucumber/version.rb in aslakhellesoy-cucumber-0.3.7.2 vs lib/cucumber/version.rb in aslakhellesoy-cucumber-0.3.7.3

- old
+ new

@@ -1,10 +1,11 @@ module Cucumber #:nodoc: class VERSION #:nodoc: MAJOR = 0 MINOR = 3 TINY = 7 - PATCH = 2 # Set to nil for official release + PATCH = 3 # Set to nil for official release STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') + STABLE_STRING = [MAJOR, MINOR, TINY].join('.') end end