Skip to content

Commit

Permalink
Merge pull request #535 from peteeckel/release/1.2.3
Browse files Browse the repository at this point in the history
Prepared release 1.2.3
  • Loading branch information
peteeckel authored Feb 11, 2025
2 parents 4acba28 + 72b6b00 commit 58c9155
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ For integration with a large number of DNS server implementations integration to
* NetBox 4.2.0 or higher
* Python 3.10 or higher

## Compatibility with earlier NetBox Versions
## Compatibility with NetBox Versions

NetBox Version | NetBox DNS Version | Comment
-------------- | ------------------ | -------
Expand All @@ -62,6 +62,7 @@ NetBox Version | NetBox DNS Version | Comment
3.7 | 0.22 |
4.0 - 4.1 | 1.0 | Supports legacy IPAM Coupling
4.0 - 4.1 | 1.1 | Supports IPAM DNSsync
4.2 | 1.2 |

## Installation & Configuration

Expand Down
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.2.3
netbox_min: 4.2.0
netbox_max: 4.2.3
- release: 1.2.2
netbox_min: 4.2.0
netbox_max: 4.2.3
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.2.2"
__version__ = "1.2.3"


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.2.2"
assert __version__ == "1.2.3"


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

0 comments on commit 58c9155

Please sign in to comment.