diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 53b23e23..d63b094d 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -16,5 +16,5 @@ | 1.5.4 | 4.5.4 | 4.5.0-6 | | 1.5.5 | 4.5.0 | 4.5.0-6 | | 1.5.6 | 4.5.0 | 4.5.0+ | -| 1.5.7 | 4.5.3 | 4.5.3+, 4.6.0-1 | -| 1.5.8 | 4.5.0 | 4.5.0+, 4.6.0-1 | +| 1.5.7 | 4.5.3 | 4.5.3+, 4.6.0+ | +| 1.5.8-9 | 4.5.0 | 4.5.0+, 4.6.0+ | diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index b2b4cda1..d9d5c72e 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.8" +__version__ = "1.5.9" def _check_list(setting): diff --git a/netbox_dns/tests/test_netbox_dns.py b/netbox_dns/tests/test_netbox_dns.py index 43db480b..d0707dea 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.8" + assert __version__ == "1.5.9" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 2c34f851..56f4ac89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dns" -version = "1.5.8" +version = "1.5.9" description = "NetBox DNS is a NetBox plugin for managing DNS data." authors = [ {name="Peter Eckel", email="pe@sys4.de"},