From eb1eb43def11e737e651f39a28919afc04310e24 Mon Sep 17 00:00:00 2001 From: "Dr. Torge Szczepanek" Date: Thu, 30 Mar 2017 13:56:54 +0200 Subject: [PATCH] Version bump and copyright fix --- LICENSE.md | 2 +- pypureomapi.py | 4 ++-- pypureomapi.spec | 2 +- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 264b82c..8a35a24 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -175,7 +175,7 @@ END OF TERMS AND CONDITIONS - Copyright 2010-2015 Cygnus Networks GmbH + Copyright 2010-2017 Cygnus Networks GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/pypureomapi.py b/pypureomapi.py index 07298f6..9f8bc85 100644 --- a/pypureomapi.py +++ b/pypureomapi.py @@ -4,7 +4,7 @@ # library for communicating with an isc dhcp server over the omapi protocol # -# Copyright 2010-2015 Cygnus Networks GmbH +# Copyright 2010-2017 Cygnus Networks GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -37,7 +37,7 @@ __author__ = "Helmut Grohne, Dr. Torge Szczepanek" __copyright__ = "Cygnus Networks GmbH" __license__ = "Apache-2.0" -__version__ = "0.5" +__version__ = "0.6" __maintainer__ = "Dr. Torge Szczepanek" __email__ = "debian@cygnusnetworks.de" diff --git a/pypureomapi.spec b/pypureomapi.spec index 6e7e82d..e9f68d9 100644 --- a/pypureomapi.spec +++ b/pypureomapi.spec @@ -8,7 +8,7 @@ %endif %define srcname pypureomapi -%define version 0.5 +%define version 0.6 %define release 1 %define sum Cygnus Networks GmbH %{srcname} package diff --git a/setup.py b/setup.py index ab10144..9e9fcb3 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # -*- coding: utf8 -*- # library for communicating with an isc dhcp server over the omapi protocol # -# Copyright 2010-2015 Cygnus Networks GmbH +# Copyright 2010-2017 Cygnus Networks GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ import distutils.core distutils.core.setup(name='pypureomapi', - version='0.5', + version='0.6', 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',