summaryrefslogtreecommitdiff
path: root/attoconf/_version.py
diff options
context:
space:
mode:
authorMad Camel <madcamel@gmail.com>2024-02-18 16:49:33 +0000
committerMad Camel <madcamel@gmail.com>2024-02-18 16:49:33 +0000
commit8edebcaf5ecdb7bcc731142921e16390436fc7a3 (patch)
treeeba669dc30a217af0d8a958b324dcaf9772f6c54 /attoconf/_version.py
parent208f846464b96721d93436006365705fde3b6b2c (diff)
parentf1a54c378b7b51b36103ad8111d66aef63e7f041 (diff)
downloadattobuild-8edebcaf5ecdb7bcc731142921e16390436fc7a3.tar.gz
attobuild-8edebcaf5ecdb7bcc731142921e16390436fc7a3.tar.bz2
attobuild-8edebcaf5ecdb7bcc731142921e16390436fc7a3.tar.xz
attobuild-8edebcaf5ecdb7bcc731142921e16390436fc7a3.zip
Merge branch 'import' into 'master'HEADmaster
Import from specing's attoconf branch See merge request legacy/attobuild!1
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'