diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 5a49823..5371326 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -4,4 +4,4 @@ |---------|------------------------|------------------------| | 0.1.1-3 | 4.5.0 | 4.5.x | | 0.1.4 | 4.5.4 | 4.5.x | -| 0.1.5 | 4.5.0 | 4.5.x | +| 0.1.5-6 | 4.5.0 | 4.5.x | diff --git a/README.md b/README.md index ef27883..37eeebd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The NetBox DHCP plugin enables NetBox to manage operational DHCP data such as servers, shared networks, subnets, pools, options and host reservations. It serves as a "source of truth" for DHCP servers, such as Kea DHCP, providing data for network automation tools that can be used to configure the DHCP infrastructure. -This works in much the same way in which NetBox provides configuration data for automatic configuration of network components, or [NetBox DNS](https://github.com/peteeckel/netbox-plugin-dns) provides the input necessary to configure DNS infrastructure and zone data. +This works in much the same way in which NetBox provides configuration data for automatic configuration of network components, or [NetBox DNS](https://github.com/sys4/netbox-plugin-dns) provides the input necessary to configure DNS infrastructure and zone data.
PyPi @@ -79,7 +79,6 @@ MIT ## Known Issues * There is an issue that sometimes causes a lock conflict while running the test suite. The symptom is that the tests stop at some point and the `./manage.py test netbox_dhcp` command never returns. The issue does not seem to affect normal operation, just the tests. The specific tests have been disabled for the time being until the issue is resolved. -* Options and Pools cannot be imported via CSV, YAML or JSON. * Filtering Subnets, Pools etc. by Option is not possible. * Documentation is still missing. diff --git a/netbox_dhcp/__init__.py b/netbox_dhcp/__init__.py index e258051..61327bf 100644 --- a/netbox_dhcp/__init__.py +++ b/netbox_dhcp/__init__.py @@ -2,7 +2,7 @@ from netbox.plugins import PluginConfig -__version__ = "0.1.5" +__version__ = "0.1.6" class DHCPConfig(PluginConfig): diff --git a/netbox_dhcp/tests/test_netbox_dhcp.py b/netbox_dhcp/tests/test_netbox_dhcp.py index fe77a1b..2a99f0f 100644 --- a/netbox_dhcp/tests/test_netbox_dhcp.py +++ b/netbox_dhcp/tests/test_netbox_dhcp.py @@ -7,7 +7,7 @@ class NetBoxDHCPVersionTestCase(SimpleTestCase): def test_version(self): - assert __version__ == "0.1.5" + assert __version__ == "0.1.6" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 4601163..67ef405 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dhcp" -version = "0.1.5" +version = "0.1.6" description = "NetBox DHCP is a NetBox plugin for DHCP data." authors = [ {name="Peter Eckel", email="pe@sys4.de"},