Skip to content

Commit

Permalink
Lowering mimimum required NetBox version to 3.7.8 to provide an upgra…
Browse files Browse the repository at this point in the history
…de path.
  • Loading branch information
wutcat committed May 26, 2024
1 parent e5c2bae commit 1ddca6b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions netbox_nas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 1ddca6b

Please sign in to comment.