From ba7cd8e0c6b35ed8431886bb5661978f05101966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=BCleyman=20ERGEN?= Date: Tue, 29 Nov 2022 13:37:02 +0300 Subject: [PATCH] Prepare for release 0.15.1 --- netbox_dns/__init__.py | 2 +- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index 43ad40d..d1d5011 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -1,6 +1,6 @@ from extras.plugins import PluginConfig -__version__ = "0.15.0" +__version__ = "0.15.1" class DNSConfig(PluginConfig): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 60e773e..cc49bcb 100644 --- a/netbox_dns/tests/test_netbox_dns.py +++ b/netbox_dns/tests/test_netbox_dns.py @@ -11,7 +11,7 @@ class NetboxDnsVersionTestCase(SimpleTestCase): """ def test_version(self): - assert __version__ == "0.15.0" + assert __version__ == "0.15.1" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 8903b55..ff6a542 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netbox-dns" -version = "0.15.0" +version = "0.15.1" description = "Netbox Dns is a netbox plugin for managing zone, nameserver and record inventory." readme = "README.md" homepage = "https://github.com/auroraresearchlab/netbox-dns"