From 3348b0c8568839bcc3f31cd20d3bcc77177dbeef Mon Sep 17 00:00:00 2001 From: Peter Eckel Date: Tue, 14 Apr 2026 17:25:17 +0200 Subject: [PATCH] Prepared Release 0.1.8 --- COMPATIBILITY.md | 1 + netbox_dhcp/__init__.py | 2 +- netbox_dhcp/tests/test_netbox_dhcp.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 803f8a4..0b85674 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -5,3 +5,4 @@ | 0.1.1-3 | 4.5.0 | 4.5.x | | 0.1.4 | 4.5.4 | 4.5.x | | 0.1.5-7 | 4.5.0 | 4.5.x | +| 0.1.8 | 4.5.0 | 4.5.x, 4.6.0b1 | diff --git a/netbox_dhcp/__init__.py b/netbox_dhcp/__init__.py index 3e78543..b24df3c 100644 --- a/netbox_dhcp/__init__.py +++ b/netbox_dhcp/__init__.py @@ -2,7 +2,7 @@ from netbox.plugins import PluginConfig -__version__ = "0.1.7" +__version__ = "0.1.8" class DHCPConfig(PluginConfig): diff --git a/netbox_dhcp/tests/test_netbox_dhcp.py b/netbox_dhcp/tests/test_netbox_dhcp.py index 4fb1218..46d9a86 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.7" + assert __version__ == "0.1.8" class AppTest(APITestCase): diff --git a/pyproject.toml b/pyproject.toml index 40ecc93..32d0e69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netbox-plugin-dhcp" -version = "0.1.7" +version = "0.1.8" description = "NetBox DHCP is a NetBox plugin for DHCP data." authors = [ {name="Peter Eckel", email="pe@sys4.de"},