diff --git a/README.md b/README.md index 5f5f99a..ac0a795 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ This plugin requires netbox version 3.5.x to work. Here is s compatibility table |----------------|----------------| | 3.5.0-7 | 0.0.1 - 0.0.6 | | 3.5.8 | 0.0.7 | +| 3.6.x | 0.8.0 | ## Installing diff --git a/netbox_powerdns_sync/__init__.py b/netbox_powerdns_sync/__init__.py index 44dd180..dd1844e 100644 --- a/netbox_powerdns_sync/__init__.py +++ b/netbox_powerdns_sync/__init__.py @@ -10,7 +10,7 @@ class NetBoxPowerdnsSyncConfig(PluginConfig): author = "Matej Vadnjal" author_email = "matej.vadnjal@arnes.si" base_url = "powerdns-sync" - min_version = "3.5.8" + min_version = "3.6.0" default_settings = { "ttl_custom_field": None, "powerdns_managed_record_comment": "netbox-powerdns-sync", diff --git a/netbox_powerdns_sync/version.py b/netbox_powerdns_sync/version.py index 2792152..9123cf0 100644 --- a/netbox_powerdns_sync/version.py +++ b/netbox_powerdns_sync/version.py @@ -1 +1 @@ -__version__ = '0.0.7' +__version__ = '0.0.8' diff --git a/pyproject.toml b/pyproject.toml index 2e72e24..5e6f9fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netbox-powerdns-sync" -version = "0.0.7" +version = "0.0.8" description = "Sync DNS records in PowerDNS with NetBox" authors = ["Matej Vadnjal "] license = "MIT"