summaryrefslogtreecommitdiff
path: root/attoconf/_version.py
diff options
context:
space:
mode:
Diffstat (limited to 'attoconf/_version.py')
-rw-r--r--attoconf/_version.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/attoconf/_version.py b/attoconf/_version.py
new file mode 100644
index 0000000..d4930e4
--- /dev/null
+++ b/attoconf/_version.py
@@ -0,0 +1,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'