From 8caa8e283dca8609e91dcc67785366bb412d527f Mon Sep 17 00:00:00 2001 From: Denis 'jawa' Pompilio Date: Tue, 2 Nov 2021 16:54:42 +0100 Subject: [PATCH] release version 2.1.0 --- CHANGES | 4 ++++ VERSION | 2 +- powerdns/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index e69445f..de7c0a0 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,10 @@ python-powerdns - PowerDNS web api python client and interface Contact: Denis 'jawa' Pompilio Sources: https://github.com/outini/python-powerdns +=== v2.1.0 02/11/2021 === + * feat(interface.py): Add support for RRSet Records as dicts (991jo) + * feat(tests): Add tests suite and documentation + === v2.0.0 15/06/2021 === * feat(interface.py): Add support for RRset comments diff --git a/VERSION b/VERSION index 227cea2..7ec1d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0 +2.1.0 diff --git a/powerdns/__init__.py b/powerdns/__init__.py index 50d45db..e8240e2 100644 --- a/powerdns/__init__.py +++ b/powerdns/__init__.py @@ -28,7 +28,7 @@ #: Current version of the package as :class:`str`. -__version__ = "2.0.0" +__version__ = "2.1.0" LOG_LEVELS = [ logging.ERROR, diff --git a/setup.py b/setup.py index a8b02b4..ca3d1c3 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ if __name__ == '__main__': readme_file = os.path.join(os.path.dirname(__file__), 'README.md') - release = "2.0.0" + release = "2.1.0" setuptools.setup( name="python-powerdns", version=release,