lib/riddle.rb in riddle-0.9.8.1198 vs lib/riddle.rb in riddle-0.9.8.1198.1

- old
+ new

@@ -7,16 +7,19 @@ module Riddle #:nodoc: class ConnectionError < StandardError #:nodoc: end module Version #:nodoc: - Major = 0 - Minor = 9 - Tiny = 8 + Major = 0 + Minor = 9 + Tiny = 8 # Revision number for RubyForge's sake, taken from what Sphinx # outputs to the command line. - Rev = 1198 + Rev = 1198 + # Release number to mark my own fixes, beyond feature parity with + # Sphinx itself. + Release = 1 String = [Major, Minor, Tiny].join('.') + "rc1" - GemVersion = [Major, Minor, Tiny, Rev].join('.') + GemVersion = [Major, Minor, Tiny, Rev, Release].join('.') end end \ No newline at end of file