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"},