Skip to content

Commit 5e74c2e

Browse files
authored
Merge pull request #18 from jasonyates/nb3.5
Adding support for Netbox 3.5
2 parents 73e8593 + 8b2b293 commit 5e74c2e

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

CHANGELOG.md

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

3+
## 0.3.0 (2023-04-28)
4+
5+
* Fixed support for Netbox 3.5. NOTE: Plugin version 0.3.0+ is only compatible with Netbox 3.5+
6+
37
## 0.2.2 (2023-01-18)
48

59
* Fix API Filtersets

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The plugin does not directly provide an automated approach to ingesting provider
1818
This plugin is only supported on NetBox 3.4 or higher, for exact compatibility information, see the table below.
1919
| NetBox Version | Plugin Version |
2020
|--|--|
21+
| 3.5 | 0.3.0 |
2122
| 3.4 | 0.2.2 |
2223

2324

netbox_circuitmaintenance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Jason Yates"""
44
__email__ = 'me@jasonyates.co.uk'
5-
__version__ = '0.2.2'
5+
__version__ = '0.3.0'
66

77

88
from extras.plugins import PluginConfig

netbox_circuitmaintenance/forms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from django import forms
22
from netbox.forms import NetBoxModelForm, NetBoxModelFilterSetForm
3-
from utilities.forms import DateTimePicker, DynamicModelChoiceField
3+
from utilities.forms.fields import DynamicModelChoiceField
4+
from utilities.forms.widgets import DateTimePicker
45
from circuits.models import Provider, Circuit
56
from .models import CircuitMaintenance, CircuitMaintenanceImpact, CircuitMaintenanceNotifications, CircuitMaintenanceTypeChoices, CircuitMaintenanceImpactTypeChoices
67

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "netbox-circuitmaintenance"
9-
version = "0.2.2"
9+
version = "0.3.0"
1010
description = "Provides the ability to record circuit maintenance, maintenance impact and maintenance notifications in Netbox and link them to Providers and Circuits."
1111
readme = "README.md"
1212
authors = [{ name = "Jason Yates", email = "me@jasonyates.co.uk" }]
@@ -19,7 +19,7 @@ Homepage = "https://github.com/jasonyates/netbox-circuitmaintenance"
1919
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
2020

2121
[tool.bumpver]
22-
current_version = "0.2.2"
22+
current_version = "0.3.0"
2323
version_pattern = "MAJOR.MINOR.PATCH"
2424
commit_message = "bump version {old_version} -> {new_version}"
2525
commit = true

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ python =
3030
3.8: py38, format, lint, build
3131

3232
[bumpversion]
33-
current_version = 0.1.0
33+
current_version = 0.3.0
3434
commit = True
3535
tag = True
3636

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
packages=find_packages(include=['netbox_circuitmaintenance', 'netbox_circuitmaintenance.*']),
3232
test_suite='tests',
3333
url='https://github.com/jasonyates/netbox-circuitmaintenance',
34-
version='0.2.2',
34+
version='0.3.0',
3535
zip_safe=False,
3636
)

0 commit comments

Comments
 (0)