summaryrefslogtreecommitdiff
path: root/attoconf/_version.py
blob: d4930e428f03fa1ed49f36f61025a51c197703bb (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 = 10

# Incremented if there is a bugfix release.
# Might not be contiguous.
patch = 0

# Reserved for distributors and forks.
# Contains arbitrary text, but no parentheses or newlines.
distributor = 'Vanilla'