Skip to content

Commit b04c213

Browse files
committed
Update for v4.4.0
1 parent 97e5755 commit b04c213

File tree

5 files changed

+32
-14
lines changed

5 files changed

+32
-14
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 0.3.3 (2025-09-03)
4+
5+
* For NetBox 4.4.0
6+
7+
## 0.3.2 (2025-09-03)
8+
9+
* For NetBox 4.3.0
10+
11+
## 0.3.1 (2025-09-03)
12+
13+
* For NetBox 4.2.0
14+
15+
## 0.3.0 (2025-09-03)
16+
17+
* For NetBox 4.1.0
18+
319
## 0.2.0 (2024-05-06)
420

521
* For NetBox 4.0

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ The features the plugin provides should be listed here.
1313

1414
## Compatibility
1515

16-
| NetBox Version | Plugin Version |
17-
|----------------|----------------|
18-
| 3.5 | 0.1.0 |
19-
| 3.5.8 | 0.1.4 |
20-
| 3.6.0 | 0.1.5 |
21-
| 3.7.6 | 0.1.7 |
22-
| < 4.0.11 | 0.2.1 |
23-
| >= 4.1.0 < 4.2.0 | 0.3.0 |
24-
| >= 4.1.0 | 0.3.1 |
16+
| NetBox Version | Plugin Version |
17+
|------------------|----------------|
18+
| 3.5 | 0.1.0 |
19+
| 3.5.8 | 0.1.4 |
20+
| 3.6.0 | 0.1.5 |
21+
| 3.7.6 | 0.1.7 |
22+
| < 4.0.11 | 0.2.1 |
23+
| >= 4.1.0 < 4.2.0 | 0.3.0 |
24+
| >= 4.2.0 | 0.3.1 |
25+
| >= 4.3.0 | 0.3.2 |
26+
| >= 4.4.0 | 0.3.3 |
2527

2628
## Installation
2729

netbox_napalm_plugin/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Arthur Hanson"""
44
__email__ = "[email protected]"
5-
__version__ = "0.3.1"
5+
__version__ = "0.3.3"
66

77

88
from netbox.plugins import PluginConfig
@@ -21,8 +21,8 @@ class NapalmPlatformConfig(PluginConfig):
2121
'NAPALM_TIMEOUT': 30,
2222
'NAPALM_ARGS': {},
2323
}
24-
min_version = '4.0.2'
25-
max_version = '4.3.99'
24+
min_version = '4.2.0'
25+
max_version = '4.4.99'
2626

2727

2828
config = NapalmPlatformConfig

netbox_napalm_plugin/project-static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "netbox_napalm_plugin",
3-
"version": "0.2.0",
3+
"version": "0.3.3",
44
"description": "Napalm Plugin for NetBox",
55
"main": "index.js",
66
"author": "Arthur Hanson",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "netbox-napalm-plugin"
10-
version = "0.3.2"
10+
version = "0.3.3"
1111
authors = [
1212
{name = "Arthur Hanson", email = "[email protected]"},
1313
]

0 commit comments

Comments
 (0)