From c183152a8d66aff07126c5d991c08025432b8bd7 Mon Sep 17 00:00:00 2001 From: Sander Steffann Date: Sat, 26 Dec 2020 19:56:53 +0100 Subject: [PATCH] Make compatible with NetBox 2.10 --- netbox_ddns/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox_ddns/__init__.py b/netbox_ddns/__init__.py index fadb448..9d5bfcd 100644 --- a/netbox_ddns/__init__.py +++ b/netbox_ddns/__init__.py @@ -1,4 +1,4 @@ -VERSION = '1.1.0' +VERSION = '1.1.1' try: from extras.plugins import PluginConfig @@ -13,7 +13,7 @@ class NetBoxDDNSConfig(PluginConfig): verbose_name = 'Dynamic DNS' version = VERSION min_version = '2.8' - max_version = '2.10' + max_version = '2.10.999' author = 'Sander Steffann' author_email = 'sander@steffann.nl' description = 'Dynamic DNS Connector for NetBox'