Bump to 0.0.3.

This commit is contained in:
Jelmer Vernooij 2021-03-26 21:40:21 +00:00
parent 7456ee7d12
commit de2c26664e
3 changed files with 9 additions and 1 deletions

View file

@ -20,6 +20,9 @@ import os
import stat
__version__ = (0, 0, 3)
USER_AGENT = "Ognibuild"

View file

@ -7,3 +7,8 @@ update_version {
match: "^ version=\"(.*)\",$"
new_line: " version=\"$VERSION\","
}
update_version {
path: "ognibuild/__init__.py"
match: "^__version__ = \\((.*)\\)$"
new_line: "__version__ = $TUPLED_VERSION"
}

View file

@ -6,7 +6,7 @@ from setuptools import setup
setup(name="ognibuild",
description="Detect and run any build system",
version="0.0.1",
version="0.0.3",
maintainer="Jelmer Vernooij",
maintainer_email="jelmer@jelmer.uk",
license="GNU GPLv2 or later",