lib/infoboxer/version.rb in infoboxer-0.3.0 vs lib/infoboxer/version.rb in infoboxer-0.3.1.pre
- old
+ new
@@ -1,8 +1,9 @@
# encoding: utf-8
module Infoboxer
MAJOR = 0
MINOR = 3
- PATCH = 0
- VERSION = [MAJOR, MINOR, PATCH].join('.')
+ PATCH = 1
+ PRE = 'pre'.freeze # set to `nil` for normal releases
+ VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
end