Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

| Release | Minimum NetBox Version | Maximum NetBox Version |
|---------|------------------------|------------------------|
| 0.1.x | 4.5.0 | 4.5.x |
| 0.1.1-3 | 4.5.0 | 4.5.x |
| 0.1.4 | 4.5.4 | 4.5.x |
4 changes: 2 additions & 2 deletions netbox_dhcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

from netbox.plugins import PluginConfig

__version__ = "0.1.3"
__version__ = "0.1.4"


class DHCPConfig(PluginConfig):
name = "netbox_dhcp"
verbose_name = _("NetBox DHCP")
description = _("NetBox plugin for DHCP")
min_version = "4.5.0"
min_version = "4.5.4"
version = __version__
author = "Peter Eckel, sys4 AG"
author_email = "pe@sys4.de"
Expand Down
2 changes: 1 addition & 1 deletion netbox_dhcp/tests/test_netbox_dhcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class NetBoxDHCPVersionTestCase(SimpleTestCase):
def test_version(self):
assert __version__ == "0.1.3"
assert __version__ == "0.1.4"


class AppTest(APITestCase):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "netbox-plugin-dhcp"
version = "0.1.3"
version = "0.1.4"
description = "NetBox DHCP is a NetBox plugin for DHCP data."
authors = [
{name="Peter Eckel", email="pe@sys4.de"},
Expand Down