release: bump version to 0.0.2 for Debian and PIP

This commit is contained in:
Pim van Pelt
2022-07-18 13:05:58 +00:00
parent 849b51be67
commit b62f5313dd
3 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,4 @@
VERSION=0.0.1 VERSION=0.0.2
VPPCFG:=vppcfg VPPCFG:=vppcfg
PYTHON?=python3 PYTHON?=python3
PIP?=pip PIP?=pip

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
vppcfg (0.0.2) unstable; urgency=low
Bugfix release:
* Fix python load / include paths, now vppcfg runs relative to $PATH
* Partial fix for 'make test' (doesn't execute the YAMLTest suite yet,
this has no impact to production)
* Bugfix: correctly prune vxlan tunnels which have an address set
* Lint: address a few pylint errors
-- Ray Kinsella <mdr@ashroe.eu> Thu, 30 Jun 2022 14:00:00 +0000
vppcfg (0.0.1) unstable; urgency=low vppcfg (0.0.1) unstable; urgency=low
* Initial public release * Initial public release

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup( setup(
name="vppcfg", name="vppcfg",
version="0.0.1", version="0.0.2",
install_requires=[ install_requires=[
"requests", "requests",
'importlib-metadata; python_version == "3.8"', 'importlib-metadata; python_version == "3.8"',