From 55cef0d109d6ed5926b5d63948a98c88afcc9daf Mon Sep 17 00:00:00 2001 From: Jan Krupa Date: Wed, 4 Sep 2024 06:56:23 +0000 Subject: [PATCH] Allow netbox version 4.1.0 --- README.md | 3 ++- netbox_attachments/__init__.py | 4 ++-- netbox_attachments/version.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 82d1769..4068985 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ The following table shows the compatibility between different NetBox versions an | >= 3.5.0 | 2.0.0 | | >= 3.6.0 | 3.0.0 | | >= 3.7.0 | 4.0.0 | -| >= 4.0.0 | 5.0.x - 5.1.0 | +| >= 4.0.0 | 5.x.x | +| >= 4.1.0 | 6.x.x ## Installation diff --git a/netbox_attachments/__init__.py b/netbox_attachments/__init__.py index d9c77f7..f619340 100644 --- a/netbox_attachments/__init__.py +++ b/netbox_attachments/__init__.py @@ -15,8 +15,8 @@ class NetBoxAttachmentsConfig(PluginConfig): 'display_setting': {} } required_settings = [] - min_version = '4.0.0' - max_version = '4.0.99' + min_version = '4.1.0' + max_version = '4.1.99' config = NetBoxAttachmentsConfig diff --git a/netbox_attachments/version.py b/netbox_attachments/version.py index 3688708..1827ac9 100644 --- a/netbox_attachments/version.py +++ b/netbox_attachments/version.py @@ -1 +1 @@ -__version__ = "5.1.3" +__version__ = "6.0.0-b1"