Skip to content

Commit bd8d61b

Browse files
authored
Merge pull request #84 from netbox-community/4-4-release
Support NetBox 4.4
2 parents 68cef7f + 0e7a5ce commit bd8d61b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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.3.0"
13-
max_version = "4.3.99"
12+
min_version = "4.4.0"
13+
max_version = "4.4.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.7.0"
1+
__version__ = "0.8.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.3.0",
41-
max_version="4.3.99"
40+
min_version="4.4.0",
41+
max_version="4.4.99"
4242
)

0 commit comments

Comments
 (0)