From 63309da6615dd90058ff799a2a71c33bf6f46bbe Mon Sep 17 00:00:00 2001 From: Chris Russell Date: Wed, 9 Oct 2024 22:06:05 +0100 Subject: [PATCH 1/2] Bump version and max_version --- netbox_floorplan/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_floorplan/__init__.py b/netbox_floorplan/__init__.py index a92f749..9ae55ab 100644 --- a/netbox_floorplan/__init__.py +++ b/netbox_floorplan/__init__.py @@ -6,10 +6,10 @@ class FloorplanConfig(PluginConfig): name = "netbox_floorplan" verbose_name = "Netbox Floorplan" description = "" - version = "0.4.0" + version = "0.4.1" base_url = "floorplan" min_version = "4.0.2" - max_version = "4.0.10" + max_version = "4.0.11" config = FloorplanConfig diff --git a/setup.py b/setup.py index 79603e3..63f3ff4 100644 --- a/setup.py +++ b/setup.py @@ -38,5 +38,5 @@ def get_version(rel_path): include_package_data=True, zip_safe=False, min_version="4.0.2", - max_version="4.0.10" + max_version="4.0.11" ) From 8fec1d4721301de0dfa0b5e98baa8e166aee45b4 Mon Sep 17 00:00:00 2001 From: Chris Russell Date: Wed, 9 Oct 2024 22:10:11 +0100 Subject: [PATCH 2/2] bump version.py and tweak readme to be more clear --- README.md | 2 +- netbox_floorplan/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a9cebf5..be04410 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ A netbox plugin providing floorplan mapping capability for locations and sites |-------------|-----------| | 3.5 | >= 0.3.2 | | 3.6 | >= 0.3.2 | -| >4.0.2 | 0.4.0 | +| 4.0.x | 0.4.1 | ## Installing diff --git a/netbox_floorplan/version.py b/netbox_floorplan/version.py index 6a9beea..3d26edf 100644 --- a/netbox_floorplan/version.py +++ b/netbox_floorplan/version.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.4.1"