1
0
mirror of https://github.com/meineerde/rackstash.git synced 2026-01-31 17:27:13 +00:00

Bump version to 0.2.0-dev

Since this is a complete rewrite of the original rackstash gem which got
up to v0.1, we start directly on 0.2 with our development and will
eventually release it as v0.2.
This commit is contained in:
Holger Just 2017-01-15 18:56:28 +01:00
parent 5dc6af0220
commit 8777596de4

View File

@ -10,13 +10,13 @@ module Rackstash
MAJOR = 0
# MINOR version. It is incremented after adding functionality in a
# backwards-compatible manner
MINOR = 1
MINOR = 2
# PATCH version. It is incremented when making backwards-compatible
# bug-fixes.
PATCH = 0
# PRERELEASE suffix. Set to a alphanumeric string on any pre-release
# versions like beta or RC releases.
PRERELEASE = nil
PRERELEASE = 'dev'.freeze
# A standard string representation of the version parts
STRING = [MAJOR, MINOR, PATCH, PRERELEASE].compact.join('.').freeze