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

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