Skip to content

Commit d045354

Browse files
committed
Prepared Release 0.1.4
1 parent 20d7f48 commit d045354

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

COMPATIBILITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
| Release | Minimum NetBox Version | Maximum NetBox Version |
44
|---------|------------------------|------------------------|
5-
| 0.1.x | 4.5.0 | 4.5.x |
5+
| 0.1.1-3 | 4.5.0 | 4.5.x |
6+
| 0.1.4 | 4.5.4 | 4.5.x |

netbox_dhcp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
from netbox.plugins import PluginConfig
44

5-
__version__ = "0.1.3"
5+
__version__ = "0.1.4"
66

77

88
class DHCPConfig(PluginConfig):
99
name = "netbox_dhcp"
1010
verbose_name = _("NetBox DHCP")
1111
description = _("NetBox plugin for DHCP")
12-
min_version = "4.5.0"
12+
min_version = "4.5.4"
1313
version = __version__
1414
author = "Peter Eckel, sys4 AG"
1515
author_email = "pe@sys4.de"

netbox_dhcp/tests/test_netbox_dhcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class NetBoxDHCPVersionTestCase(SimpleTestCase):
99
def test_version(self):
10-
assert __version__ == "0.1.3"
10+
assert __version__ == "0.1.4"
1111

1212

1313
class AppTest(APITestCase):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "netbox-plugin-dhcp"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "NetBox DHCP is a NetBox plugin for DHCP data."
55
authors = [
66
{name="Peter Eckel", email="pe@sys4.de"},

0 commit comments

Comments
 (0)