Skip to content

Commit cdb9845

Browse files
authored
Merge pull request #101 from netbox-community/4.6.0
4.6.0
2 parents b9fe5fa + 63cbb82 commit cdb9845

5 files changed

Lines changed: 18 additions & 16 deletions

File tree

COMPATIBILITY.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Compatibility Matrix
2+
3+
| Release | Minimum NetBox Version | Maximum NetBox Version |
4+
|---------|------------------------|------------------------|
5+
| 0.9.2. | 4.6.0 | 4.6.x |
6+
| 0.9.1 | 4.5.0 | 4.5.x |
7+
| 0.8.0 | 4.4.0 | 4.4.x |
8+
| 0.7.0 | 4.3.0 | 4.3.x |
9+
| 0.6.0 | 4.2.0 | 4.2.x |
10+
| 0.5.0 | 4.1.0 | 4.1.x |
11+
| 0.4.1 | 4.0.0 | 4.0.x |

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Originally Forked from https://github.com/tbotnz/netbox_floorplan
1212
![new-enhancements](/media/new-floorplan-demo.gif)
1313

1414
## Summary
15-
A netbox plugin providing floorplan mapping capability for locations and sites
15+
A [NetBox] (http://netboxlabs.com/oss/netbox/) plugin providing floorplan mapping capability for locations and sites
1616

1717
- provides graphical ability to draw racks & unracked devices on a floorplan
1818
- support for metadata such as labels, areas, walls, coloring
@@ -22,16 +22,7 @@ A netbox plugin providing floorplan mapping capability for locations and sites
2222

2323
## Compatibility
2424

25-
| NetBox Version | Plugin Version |
26-
|-------------|-----------|
27-
| 3.5 | >= 0.3.2 |
28-
| 3.6 | >= 0.3.2 |
29-
| 4.0.x | 0.4.1 |
30-
| 4.1.x | 0.5.0 |
31-
| 4.2.x | 0.6.0 |
32-
| 4.3.x | 0.7.0 |
33-
| 4.4.x | 0.8.0 |
34-
| 4.5.x | 0.9.0 |
25+
See the [compatibility matrix](COMPATIBILITY.md) for supported NetBox versions.
3526

3627
## Installing
3728

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.5.0"
13-
max_version = "4.5.99"
12+
min_version = "4.6.0"
13+
max_version = "4.6.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.9.1"
1+
__version__ = "0.9.2"

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.5.0",
41-
max_version="4.5.99"
40+
min_version="4.6.0",
41+
max_version="4.6.99"
4242
)

0 commit comments

Comments
 (0)