blob: 76c1c3dfff5f5574ba99cd0fb948e02d68ae506c (
plain) (
tree)
|
|
# Implementation of Semantic Versioning
# This file should change in every single commit.
# Incremented for releases with incompatible API changes.
# 0 is special, for initial releases with no real guarantees.
major = 0
# Incremented for releases with compatible API additions.
# This is the number that is usually incremented.
minor = 6
# Incremented if there is a bugfix release.
# Might not be contiguous.
patch = 1
# Reserved for distributors and forks.
# Contains arbitrary text, but no parentheses or newlines.
distributor = 'Vanilla'
|