Skip to content

Commit 92c6073

Browse files
authored
Merge pull request #67 from netbox-community/feat/prepare-for-4-2
Release 0.6.0
2 parents 4130d63 + af3ecad commit 92c6073

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.github/workflows/pub-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
contents: read
1515
steps:
1616
- uses: actions/checkout@main
17-
- name: Set up Python 3.7
17+
- name: Set up Python 3.12
1818
uses: actions/setup-python@v1
1919
with:
20-
python-version: 3.7
20+
python-version: 3.12
2121
- name: Install pypa/build
2222
run: >-
2323
python -m

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- name: Set up Python environment
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.12"
1616
- name: flake8 Lint
1717
uses: py-actions/flake8@v2

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.6.0
5+
netbox_min: 4.2.0
6+
netbox_max: 4.2.1
47
- release: 0.5.0
58
netbox_min: 4.1.0
6-
netbox_max: 4.1.7
9+
netbox_max: 4.1.11
710
- release: 0.4.1
811
netbox_min: 4.0.2
912
netbox_max: 4.0.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.1.0"
13-
max_version = "4.1.99"
12+
min_version = "4.2.0"
13+
max_version = "4.2.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.5.0"
1+
__version__ = "0.6.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.1.0",
41-
max_version="4.1.99"
40+
min_version="4.2.0",
41+
max_version="4.2.99"
4242
)

0 commit comments

Comments
 (0)