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