diff --git a/Makefile b/Makefile index 116876e..207281e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.2 +VERSION=0.0.3 VPPCFG:=vppcfg PYTHON?=python3 PIP?=pip diff --git a/debian/changelog b/debian/changelog index 0b29d91..d1c0049 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +vppcfg (0.0.3) unstable; urgency=low + + Feature release: + * Allow the ability to set --novpp flag on planners. See user-guide for + details. + * Add device-type to the schema, which allows the configuratoin to specify + 'dpdk' type interfaces. This paves the way for RDMA and AVF interfaces + in a later release. + * Some small bugfixes and refactors + * Lint: address a few pylint errors + + -- Pim van Pelt Sat, 03 Dec 2022 14:15:00 +0000 vppcfg (0.0.2) unstable; urgency=low Bugfix release: diff --git a/debian/control b/debian/control index 473b85e..a07c80f 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,6 @@ Standards-Version: 3.9.5 Package: vppcfg Architecture: any -Pre-Depends: dpkg (>= 1.16.1), python3.8, ${misc:Pre-Depends} +Pre-Depends: dpkg (>= 1.16.1), python3 (>= 3.8), ${misc:Pre-Depends} Depends: python3-netaddr, python3-ipaddr, ${misc:Depends} -Description: A configuration tool for FD.io VPP \ No newline at end of file +Description: A configuration tool for FD.io VPP diff --git a/setup.py b/setup.py index 42ccd62..ff4421c 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,10 @@ from setuptools import setup setup( name="vppcfg", - version="0.0.2", + version="0.0.3", install_requires=[ "requests", - 'importlib-metadata; python_version == "3.8"', + 'importlib-metadata; python_version > "3.8"', "yamale", "netaddr", "vpp_papi",