Release vppcfg 0.0.3

This commit is contained in:
Pim van Pelt
2022-12-03 16:18:26 +00:00
parent 305a30b1a1
commit ac13f54ab5
4 changed files with 17 additions and 5 deletions

View File

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

12
debian/changelog vendored
View File

@ -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 <pim@ipng.nl> Sat, 03 Dec 2022 14:15:00 +0000
vppcfg (0.0.2) unstable; urgency=low vppcfg (0.0.2) unstable; urgency=low
Bugfix release: Bugfix release:

2
debian/control vendored
View File

@ -7,6 +7,6 @@ Standards-Version: 3.9.5
Package: vppcfg Package: vppcfg
Architecture: any 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} Depends: python3-netaddr, python3-ipaddr, ${misc:Depends}
Description: A configuration tool for FD.io VPP Description: A configuration tool for FD.io VPP

View File

@ -3,10 +3,10 @@ from setuptools import setup
setup( setup(
name="vppcfg", name="vppcfg",
version="0.0.2", version="0.0.3",
install_requires=[ install_requires=[
"requests", "requests",
'importlib-metadata; python_version == "3.8"', 'importlib-metadata; python_version > "3.8"',
"yamale", "yamale",
"netaddr", "netaddr",
"vpp_papi", "vpp_papi",