From 4aa93a9563e270a0de1154c22ecf4e85ce3ec7b9 Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Wed, 2 Oct 2024 16:23:41 +0200 Subject: [PATCH] Prepared release 1.1.3 --- netbox-plugin.yaml | 11 +++++++---- netbox_dns/__init__.py | 2 +- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml index 39fa624f..0858c447 100644 --- a/netbox-plugin.yaml +++ b/netbox-plugin.yaml @@ -1,18 +1,21 @@ version: 0.1 package_name: netbox-plugin-dns compatibility: + - release: 1.1.3 + netbox_min: 4.0.0 + netbox_max: 4.1.3 - release: 1.1.2 netbox_min: 4.0.0 - netbox_max: 4.1.2 + netbox_max: 4.1.3 - release: 1.1.1 netbox_min: 4.0.0 - netbox_max: 4.1.2 + netbox_max: 4.1.3 - release: 1.1.0 netbox_min: 4.0.0 - netbox_max: 4.1.2 + netbox_max: 4.1.3 - release: 1.0.7 netbox_min: 4.0.0 - netbox_max: 4.1.2 + netbox_max: 4.1.3 - release: 1.0.6 netbox_min: 4.0.0 netbox_max: 4.0.9 diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index 9ec96e06..824ae644 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -6,7 +6,7 @@ from netbox_dns.choices import RecordTypeChoices -__version__ = "1.1.2" +__version__ = "1.1.3" class DNSConfig(PluginConfig): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index dab81043..162d432d 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.2" + assert __version__ == "1.1.3" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 102c59fc..306ac6b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.1.2" +version = "1.1.3" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pete@netbox-dns.org"},