Skip to content

Commit

Permalink
Prepared legacy release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
peteeckel committed Jan 7, 2025
1 parent e2d34aa commit 204fb72
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 19 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: v4.1.11

- name: Install NetBox DNS
working-directory: netbox-plugin-dns
Expand Down
33 changes: 18 additions & 15 deletions netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,54 @@
version: 0.1
package_name: netbox-plugin-dns
compatibility:
- release: 1.1.7
netbox_min: 4.0.0
netbox_max: 4.1.11
- release: 1.1.6
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.5
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.4
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.3
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.2
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.1
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.1.0
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.7
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.6
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.5
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.4
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.3
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.2
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.1
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 1.0.0
netbox_min: 4.0.0
netbox_max: 4.1.10
netbox_max: 4.1.11
- release: 0.22.9
netbox_min: 3.5.0
netbox_max: 3.7.8
Expand Down
3 changes: 2 additions & 1 deletion 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.1.7"


def _check_list(setting):
Expand All @@ -20,6 +20,7 @@ class DNSConfig(PluginConfig):
verbose_name = _("NetBox DNS")
description = _("NetBox plugin for DNS data")
min_version = "4.0.0"
max_version = "4.1.99"
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.1.7"


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-dns"
version = "1.1.6"
version = "1.1.7"
description = "NetBox DNS is a NetBox plugin for managing DNS data."
authors = [
{name="Peter Eckel", email="[email protected]"},
Expand Down

0 comments on commit 204fb72

Please sign in to comment.