Python: Automatically conform to PEP440 for version numbers

This commit is contained in:
Andrew Dutcher
2017-01-04 05:50:53 -08:00
parent c2d57c6806
commit 5d8934f5a9
2 changed files with 36 additions and 2 deletions

View File

@@ -1,9 +1,13 @@
# Package version of Unicorn for Makefile.
# To be used to generate unicorn.pc for pkg-config
# Also used to generate python package version
# version major & minor
PKG_MAJOR = 1
PKG_MINOR = 0
# version bugfix level. Example: PKG_EXTRA = 1
PKG_EXTRA =
PKG_EXTRA = 0
# version tag. Examples: rc1, b2, post1
PKG_TAG = rc2