lib/roda/version.rb in roda-1.2.0 vs lib/roda/version.rb in roda-1.3.0

- old
+ new

@@ -1,3 +1,15 @@ class Roda - RodaVersion = '1.2.0'.freeze + # The major version of Roda, updated only for major changes that are + # likely to require modification to Roda apps. + RodaMajorVersion = 1 + + # The minor version of Roda, updated for new feature releases of Roda. + RodaMinorVersion = 3 + + # The patch version of Roda, updated only for bug fixes from the last + # feature release. + RodaPatchVersion = 0 + + # The full version of Roda as a string. + RodaVersion = "#{RodaMajorVersion}.#{RodaMinorVersion}.#{RodaPatchVersion}".freeze end