diff --git a/Makefile b/Makefile index 6db684b..450d011 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.1 +VERSION=0.0.2 VPPCFG:=vppcfg PYTHON?=python3 PIP?=pip diff --git a/debian/changelog b/debian/changelog index 0d51377..0b29d91 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 30 Jun 2022 14:00:00 +0000 vppcfg (0.0.1) unstable; urgency=low * Initial public release diff --git a/setup.py b/setup.py index 0abf4f2..b8c4189 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name="vppcfg", - version="0.0.1", + version="0.0.2", install_requires=[ "requests", 'importlib-metadata; python_version == "3.8"',