diff --git a/lib/sidetiq/version.rb b/lib/sidetiq/version.rb index e741e64..54dedc9 100644 --- a/lib/sidetiq/version.rb +++ b/lib/sidetiq/version.rb @@ -1,9 +1,16 @@ module Sidetiq + # Public: Sidetiq version namespace. module VERSION + # Public: Sidetiq major version number. MAJOR = 0 + + # Public: Sidetiq minor version number. MINOR = 1 + + # Public: Sidetiq patch level. PATCH = 2 + # Public: String representation of the current Sidetiq version. STRING = [MAJOR, MINOR, PATCH].compact.join('.') end end