blob: 75812fda8506c328dcfa729b274cffcbab018aa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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 = 8
# Incremented if there is a bugfix release.
# Might not be contiguous.
patch = 2
# Reserved for distributors and forks.
# Contains arbitrary text, but no parentheses or newlines.
distributor = 'Vanilla'
|