Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion netbox_floorplan/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.1"
__version__ = "0.5.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Loading