From 204fb72e830ff1ebf5e45400d2dd6ff76bd54daf Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Tue, 7 Jan 2025 12:27:15 +0100 Subject: [PATCH] Prepared legacy release 1.1.7 --- .github/workflows/test.yml | 2 +- netbox-plugin.yaml | 33 ++++++++++++++++------------- netbox_dns/__init__.py | 3 ++- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 5 files changed, 23 insertions(+), 19 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dcfeb3f2..9d29437a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: with: repository: "netbox-community/netbox" path: netbox - ref: master + ref: v4.1.11 - name: Install NetBox DNS working-directory: netbox-plugin-dns diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml index 06d7cc4d..1d2b6e40 100644 --- a/netbox-plugin.yaml +++ b/netbox-plugin.yaml @@ -1,51 +1,54 @@ version: 0.1 package_name: netbox-plugin-dns compatibility: + - release: 1.1.7 + netbox_min: 4.0.0 + netbox_max: 4.1.11 - release: 1.1.6 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.5 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.4 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.3 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.2 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.1 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.1.0 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.7 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.6 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.5 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.4 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.3 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.2 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.1 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - release: 1.0.0 netbox_min: 4.0.0 - netbox_max: 4.1.10 + netbox_max: 4.1.11 - 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 fd85cde0..ef647613 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.6" +__version__ = "1.1.7" def _check_list(setting): @@ -20,6 +20,7 @@ class DNSConfig(PluginConfig): verbose_name = _("NetBox DNS") description = _("NetBox plugin for DNS data") min_version = "4.0.0" + max_version = "4.1.99" version = __version__ author = "Peter Eckel" author_email = "pete@netbox-dns.org" diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 9b415ffe..2ef65182 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.6" + assert __version__ == "1.1.7" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 8f0008fa..219822a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.1.6" +version = "1.1.7" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pete@netbox-dns.org"},