From 68d6698d1d1451a9e7a9855676768929014ca337 Mon Sep 17 00:00:00 2001 From: Chris Russell Date: Sun, 8 Dec 2024 23:04:26 +0000 Subject: [PATCH] Release 0.5.0 --- README.md | 1 + netbox-plugin.yaml | 3 +++ netbox_floorplan/version.py | 2 +- setup.py | 4 ++-- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e40bddc..a341675 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ A netbox plugin providing floorplan mapping capability for locations and sites | 3.5 | >= 0.3.2 | | 3.6 | >= 0.3.2 | | 4.0.x | 0.4.1 | +| 4.1.x | 0.5.0 | ## Installing diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml index 133cafa..58a5f29 100644 --- a/netbox-plugin.yaml +++ b/netbox-plugin.yaml @@ -1,6 +1,9 @@ version: 0.1 package_name: netbox-floorplan-plugin compatibility: + - release: 0.5.0 + netbox_min: 4.1.0 + netbox_max: 4.1.7 - release: 0.4.1 netbox_min: 4.0.2 netbox_max: 4.0.11 diff --git a/netbox_floorplan/version.py b/netbox_floorplan/version.py index 3d26edf..3d18726 100644 --- a/netbox_floorplan/version.py +++ b/netbox_floorplan/version.py @@ -1 +1 @@ -__version__ = "0.4.1" +__version__ = "0.5.0" diff --git a/setup.py b/setup.py index d776723..7ad2da5 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,6 @@ def get_version(rel_path): packages=find_packages(), include_package_data=True, zip_safe=False, - min_version="4.0.0", - max_version="4.0.99" + min_version="4.1.0", + max_version="4.1.99" )