From c50153573f5ad02d370efc405b282578f26b770b Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Thu, 21 Nov 2024 20:46:46 +0100 Subject: [PATCH] Prepared release 1.1.6 --- netbox-plugin.yaml | 31 ++++++++++++++++------------- netbox_dns/__init__.py | 2 +- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml index a0e5579b..23478ebc 100644 --- a/netbox-plugin.yaml +++ b/netbox-plugin.yaml @@ -1,48 +1,51 @@ version: 0.1 package_name: netbox-plugin-dns compatibility: + - release: 1.1.6 + netbox_min: 4.0.0 + netbox_max: 4.1.7 - release: 1.1.5 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.1.4 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.1.3 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.1.2 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.1.1 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.1.0 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.7 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.6 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.5 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.4 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.3 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.2 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.1 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 1.0.0 netbox_min: 4.0.0 - netbox_max: 4.1.6 + netbox_max: 4.1.7 - release: 0.22.9 netbox_min: 3.5.0 netbox_max: 3.7.8 diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index 01dbb21c..74efb68c 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -7,7 +7,7 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices, ZoneStatusChoices -__version__ = "1.1.5" +__version__ = "1.1.6" def _check_list(setting): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 4cd1f335..9b415ffe 100644 --- a/netbox_dns/tests/test_netbox_dns.py +++ b/netbox_dns/tests/test_netbox_dns.py @@ -7,7 +7,7 @@ class NetBoxDNSVersionTestCase(SimpleTestCase): def test_version(self): - assert __version__ == "1.1.5" + assert __version__ == "1.1.6" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 631c544b..8f0008fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.1.5" +version = "1.1.6" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pete@netbox-dns.org"},