diff options
author | Mad Camel <madcamel@gmail.com> | 2024-02-18 16:49:33 +0000 |
---|---|---|
committer | Mad Camel <madcamel@gmail.com> | 2024-02-18 16:49:33 +0000 |
commit | 8edebcaf5ecdb7bcc731142921e16390436fc7a3 (patch) | |
tree | eba669dc30a217af0d8a958b324dcaf9772f6c54 /attoconf/_version.py | |
parent | 208f846464b96721d93436006365705fde3b6b2c (diff) | |
parent | f1a54c378b7b51b36103ad8111d66aef63e7f041 (diff) | |
download | attobuild-master.tar.gz attobuild-master.tar.bz2 attobuild-master.tar.xz attobuild-master.zip |
Import from specing's attoconf branch
See merge request legacy/attobuild!1
Diffstat (limited to 'attoconf/_version.py')
-rw-r--r-- | attoconf/_version.py | 18 |
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' |