Skip to content

Commit

Permalink
Updates for NetBox v4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cruse1977 committed Jan 11, 2025
1 parent 4130d63 commit b80c5df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: 0.1
package_name: netbox-floorplan-plugin
compatibility:
- release: 0.6.0
netbox_min: 4.2.0
netbox_max: 4.2.1
- release: 0.5.0
netbox_min: 4.1.0
netbox_max: 4.1.7
netbox_max: 4.1.11
- release: 0.4.1
netbox_min: 4.0.2
netbox_max: 4.0.11
Expand Down
4 changes: 2 additions & 2 deletions netbox_floorplan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class FloorplanConfig(PluginConfig):
description = ""
version = __version__
base_url = "floorplan"
min_version = "4.1.0"
max_version = "4.1.99"
min_version = "4.2.0"
max_version = "4.2.99"


config = FloorplanConfig
2 changes: 1 addition & 1 deletion netbox_floorplan/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.6.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.1.0",
max_version="4.1.99"
min_version="4.2.0",
max_version="4.2.99"
)

0 comments on commit b80c5df

Please sign in to comment.