Skip to content

Commit 84a86fd

Browse files
authored
Merge pull request #71 from cruse1977/master
Release Prep 4.3.x
2 parents e193081 + 4285390 commit 84a86fd

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @tbotnz @cruse1977 @natm @cvitan
1+
* @tbotnz @cruse1977

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ A netbox plugin providing floorplan mapping capability for locations and sites
2525
| 4.0.x | 0.4.1 |
2626
| 4.1.x | 0.5.0 |
2727
| 4.2.x | 0.6.0 |
28+
| 4.3.x | 0.7.0 |
2829

2930
## Installing
3031

@@ -50,6 +51,9 @@ Restart NetBox and add `netbox-floorplan-plugin` to your local_requirements.txt
5051

5152
See [NetBox Documentation](https://docs.netbox.dev/en/stable/plugins/#installing-plugins) for details
5253

54+
>[!IMPORTANT]
55+
>In order for racks to display properly, the rack type of the rack should be specified and a width/height set within the type.
56+
5357
## Mentions
5458

5559
Forked from https://github.com/tbotnz/netbox_floorplan

netbox-plugin.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
version: 0.1
22
package_name: netbox-floorplan-plugin
33
compatibility:
4+
- release: 0.7.0
5+
netbox_min: 4.3.0
6+
netbox_max: 4.3.99
47
- release: 0.6.0
58
netbox_min: 4.2.0
6-
netbox_max: 4.2.1
9+
netbox_max: 4.2.99
710
- release: 0.5.0
811
netbox_min: 4.1.0
912
netbox_max: 4.1.11

netbox_floorplan/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class FloorplanConfig(PluginConfig):
99
description = ""
1010
version = __version__
1111
base_url = "floorplan"
12-
min_version = "4.2.0"
13-
max_version = "4.2.99"
12+
min_version = "4.3.0"
13+
max_version = "4.3.99"
1414

1515

1616
config = FloorplanConfig

netbox_floorplan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.7.0"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ def get_version(rel_path):
3737
packages=find_packages(),
3838
include_package_data=True,
3939
zip_safe=False,
40-
min_version="4.2.0",
41-
max_version="4.2.99"
40+
min_version="4.3.0",
41+
max_version="4.3.99"
4242
)

0 commit comments

Comments
 (0)