From 5be1d5f0ff2fc019052176ff2a66b75a40d1146b Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Fri, 27 Sep 2024 01:58:52 +0200 Subject: [PATCH] Prepared release 1.1.2 --- netbox-plugin.yaml | 9 ++++++--- netbox_dns/__init__.py | 2 +- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml index e5092b38..39fa624f 100644 --- a/netbox-plugin.yaml +++ b/netbox-plugin.yaml @@ -1,15 +1,18 @@ version: 0.1 package_name: netbox-plugin-dns compatibility: + - release: 1.1.2 + netbox_min: 4.0.0 + netbox_max: 4.1.2 - release: 1.1.1 netbox_min: 4.0.0 - netbox_max: 4.1.1 + netbox_max: 4.1.2 - release: 1.1.0 netbox_min: 4.0.0 - netbox_max: 4.1.1 + netbox_max: 4.1.2 - release: 1.0.7 netbox_min: 4.0.0 - netbox_max: 4.1.0 + netbox_max: 4.1.2 - 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 c2b0e63e..8c1e2a06 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -5,7 +5,7 @@ from netbox_dns.choices import RecordTypeChoices -__version__ = "1.1.1" +__version__ = "1.1.2" class DNSConfig(PluginConfig): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 366b4074..dab81043 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.1" + assert __version__ == "1.1.2" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index a6e6bf56..3064ee11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.1.1" +version = "1.1.2" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pete@netbox-dns.org"},