From 1ddca6ba8332c25411f3e4ca427864c6449bb02f Mon Sep 17 00:00:00 2001 From: Alex Ptak Date: Sun, 26 May 2024 07:15:43 -0400 Subject: [PATCH] Lowering mimimum required NetBox version to 3.7.8 to provide an upgrade path. --- README.md | 7 +++++++ netbox_nas/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2702fbd..030aaf3 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,10 @@ This plugin introduces four new models: - NAS Mount: The mount definition. This describes how a share should be mounted on a particular resource. NetBox Devices, Virtual Machines, and Prefixes can be linked to this currently. ![Object Links](assets/images/model-links.png) + +## Requirements +Minimum NetBox version: + - v1.0.3: NetBox 3.7.8 + - v1.0.2: NetBox 4.0.0 + - v1.0.1: NetBox 3.4.0 + - v1.0.0: NetBox 3.4.0 diff --git a/netbox_nas/__init__.py b/netbox_nas/__init__.py index 3e54a4c..5667c49 100644 --- a/netbox_nas/__init__.py +++ b/netbox_nas/__init__.py @@ -4,8 +4,8 @@ class NetBoxNASConfig(PluginConfig): name = 'netbox_nas' verbose_name = 'NetBox NAS' description = 'Add NAS entities to NetBox' - version = '1.0.2' + version = '1.0.3' base_url = 'nas' - min_version = '4.0.0' + min_version = '3.7.8' config = NetBoxNASConfig diff --git a/setup.py b/setup.py index 573549f..908e0e1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='netbox-nas', - version='1.0.2', + version='1.0.3', description='Add NAS entities to NetBox', long_description_content_type='text/markdown', long_description=open('README.md', 'r').read(),