Skip to content

Commit 1fb135c

Browse files
committed
Prepared release 1.5.0b1
1 parent 5f1c9b0 commit 1fb135c

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

netbox-plugin.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ package_name: netbox-plugin-dns
33
compatibility:
44
- release: 1.4.4
55
netbox_min: 4.3.2
6-
netbox_max: 4.4.7
6+
netbox_max: 4.4.8
77
- release: 1.4.3
88
netbox_min: 4.3.2
9-
netbox_max: 4.4.7
9+
netbox_max: 4.4.8
1010
- release: 1.4.2
1111
netbox_min: 4.3.2
12-
netbox_max: 4.4.7
12+
netbox_max: 4.4.8
1313
- release: 1.4.1
1414
netbox_min: 4.3.2
15-
netbox_max: 4.4.7
15+
netbox_max: 4.4.8
1616
- release: 1.4.0
1717
netbox_min: 4.3.2
1818
netbox_max: 4.3.7

netbox_dns/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from netbox.plugins import PluginConfig
55
from netbox.plugins.utils import get_plugin_config
66

7-
__version__ = "1.4.4"
7+
__version__ = "1.5.0b1"
88

99

1010
def _check_list(setting):
@@ -16,7 +16,7 @@ class DNSConfig(PluginConfig):
1616
name = "netbox_dns"
1717
verbose_name = _("NetBox DNS")
1818
description = _("NetBox plugin for DNS data")
19-
min_version = "4.3.2"
19+
min_version = "4.5.0b1"
2020
version = __version__
2121
author = "Peter Eckel"
2222
author_email = "pete@netbox-dns.org"

netbox_dns/tests/test_netbox_dns.py

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

88
class NetBoxDNSVersionTestCase(SimpleTestCase):
99
def test_version(self):
10-
assert __version__ == "1.4.4"
10+
assert __version__ == "1.5.0b1"
1111

1212

1313
class AppTest(APITestCase):

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "netbox-plugin-dns"
3-
version = "1.4.4"
3+
version = "1.5.0b1"
44
description = "NetBox DNS is a NetBox plugin for managing DNS data."
55
authors = [
66
{name="Peter Eckel", email="pete@netbox-dns.org"},
@@ -11,12 +11,12 @@ license-files = [
1111
readme = "README.md"
1212
keywords = ["netbox", "netbox-plugin", "dns"]
1313
classifiers = [
14-
"Development Status :: 5 - Production/Stable"
14+
"Development Status :: 4 - Beta"
1515
]
1616
dependencies = [
1717
"dnspython",
1818
]
19-
requires-python = ">=3.10"
19+
requires-python = ">=3.12"
2020

2121
[project.urls]
2222
Homepage = "https://github.com/peteeckel/netbox-plugin-dns"

0 commit comments

Comments
 (0)