Skip to content

Commit

Permalink
Prepared release 4.2b1
Browse files Browse the repository at this point in the history
  • Loading branch information
peteeckel committed Dec 2, 2024
1 parent 3be35d8 commit 34d549d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
repository: "netbox-community/netbox"
path: netbox
ref: master
ref: feature

- name: Install NetBox DNS
working-directory: netbox-plugin-dns
Expand Down
4 changes: 2 additions & 2 deletions netbox_dns/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices, ZoneStatusChoices

__version__ = "1.1.6"
__version__ = "1.2b1"


def _check_list(setting):
Expand All @@ -19,7 +19,7 @@ class DNSConfig(PluginConfig):
name = "netbox_dns"
verbose_name = _("NetBox DNS")
description = _("NetBox plugin for DNS data")
min_version = "4.0.0"
min_version = "4.2.0"
version = __version__
author = "Peter Eckel"
author_email = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion netbox_dns/tests/test_netbox_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class NetBoxDNSVersionTestCase(SimpleTestCase):
def test_version(self):
assert __version__ == "1.1.6"
assert __version__ == "1.2b1"


class AppTest(APITestCase):
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "netbox-plugin-dns"
version = "1.1.6"
version = "1.2b1"
description = "NetBox DNS is a NetBox plugin for managing DNS data."
authors = [
{name="Peter Eckel", email="[email protected]"},
Expand All @@ -9,7 +9,7 @@ license = {file="LICENCE"}
readme = "README.md"
keywords = ["netbox", "netbox-plugin", "dns"]
classifiers = [
"Development Status :: 5 - Production/Stable"
"Development Status :: 4 - Beta"
]
dependencies = [
"dnspython",
Expand Down

0 comments on commit 34d549d

Please sign in to comment.