Skip to content

Commit

Permalink
Prepared release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
peteeckel committed May 23, 2024
1 parent ed50628 commit 6e307da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: 0.1
package_name: netbox-plugin-dns
compatibility:
- release: 1.0.1
netbox_min: 4.0.0
netbox_max: 4.0.3
- release: 1.0.0
netbox_min: 4.0.0
netbox_max: 4.0.3
Expand Down
2 changes: 1 addition & 1 deletion netbox_dns/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from netbox.plugins import PluginConfig

__version__ = "1.0.0"
__version__ = "1.0.1"


class DNSConfig(PluginConfig):
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.0.0"
assert __version__ == "1.0.1"


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 @@
[tool.poetry]
name = "netbox-plugin-dns"
version = "1.0.0"
version = "1.0.1"
description = "NetBox DNS is a NetBox plugin for managing DNS data."
authors = ["Peter Eckel <pete@netbox-dns.org>"]
homepage = "https://github.com/peteeckel/netbox-plugin-dns"
Expand Down

0 comments on commit 6e307da

Please sign in to comment.