diff --git a/debian/changelog b/debian/changelog index ea96d1f..d83cce6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pypureomapi (0.7) unstable; urgency=low + + * add new method add_host_supersede + + -- Dr. Torge Szczepanek Fri, 21 Sep 2018 15:14:59 +0200 + pypureomapi (0.6) unstable; urgency=low * add optional timeout parameter diff --git a/pypureomapi.py b/pypureomapi.py index bedbfeb..935f5d5 100644 --- a/pypureomapi.py +++ b/pypureomapi.py @@ -37,7 +37,7 @@ __author__ = "Helmut Grohne, Dr. Torge Szczepanek" __copyright__ = "Cygnus Networks GmbH" __license__ = "Apache-2.0" -__version__ = "0.6" +__version__ = "0.7" __maintainer__ = "Dr. Torge Szczepanek" __email__ = "debian@cygnusnetworks.de" diff --git a/pypureomapi.spec b/pypureomapi.spec index e9f68d9..431a9e7 100644 --- a/pypureomapi.spec +++ b/pypureomapi.spec @@ -8,7 +8,7 @@ %endif %define srcname pypureomapi -%define version 0.6 +%define version 0.7 %define release 1 %define sum Cygnus Networks GmbH %{srcname} package diff --git a/setup.py b/setup.py index 9e9fcb3..2df39d1 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ import distutils.core distutils.core.setup(name='pypureomapi', - version='0.6', + version='0.7', description="ISC DHCP OMAPI protocol implementation in Python", long_description="This module grew out of frustration about pyomapi and later pyomapic. The extension modules mentioned can be used to query the ISC DHCP server for information about leases. pyomapic does this job using swig and the static library provided with ISC DHCP. It leaks and has basically no error checking. Adding error checking later turned out to be a maintenance hell with swig, so a pure python implementation for omapi, pypureomapi was born. It can mostly be used as a drop-in replacement for pyomapic.", author='Helmut Grohne',