From 0c113399c4de180612d0c3979900b2b6bd734f86 Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Wed, 18 Mar 2026 18:12:37 +0100 Subject: [PATCH] Prepared release 1.5.5 --- COMPATIBILITY.md | 1 + netbox_dns/__init__.py | 2 +- netbox_dns/tests/test_netbox_dns.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 3ad1ad46..e76d1381 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -14,3 +14,4 @@ | 1.5.0-1 | 4.5.0 | 4.5.1 | | 1.5.2-3 | 4.5.2 | 4.5.x | | 1.5.4 | 4.5.4 | 4.5.x | +| 1.5.5 | 4.5.0 | 4.5.x | diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index 4535c814..7d751053 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -4,7 +4,7 @@ from netbox.plugins import PluginConfig from netbox.plugins.utils import get_plugin_config -__version__ = "1.5.4" +__version__ = "1.5.5" def _check_list(setting): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 0848ecb6..51d9f448 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.5.4" + assert __version__ == "1.5.5" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 4213bf2e..1114e13b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.5.4" +version = "1.5.5" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pe@sys4.de"},