Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepared release 1.1.6 #484

Merged
merged 1 commit into from
Nov 21, 2024
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
31 changes: 17 additions & 14 deletions netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,48 +1,51 @@
version: 0.1
package_name: netbox-plugin-dns
compatibility:
- release: 1.1.6
netbox_min: 4.0.0
netbox_max: 4.1.7
- release: 1.1.5
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.1.4
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.1.3
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.1.2
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.1.1
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.1.0
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.7
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.6
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.5
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.4
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.3
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.2
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.1
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 1.0.0
netbox_min: 4.0.0
netbox_max: 4.1.6
netbox_max: 4.1.7
- release: 0.22.9
netbox_min: 3.5.0
netbox_max: 3.7.8
Expand Down
2 changes: 1 addition & 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.5"
__version__ = "1.1.6"


def _check_list(setting):
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.5"
assert __version__ == "1.1.6"


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