Skip to content

Commit

Permalink
v2.1.0 Netbox 4.0.2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mlebreuil committed May 15, 2024
1 parent 9094c4f commit e05ed61
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

## Version 2

### Version 2.1.0

* Netbox v4 compatibility. Netbox4.0.2 become a minimum requirement

### Version 2.0.14

* [127](https://github.com/mlebreuil/netbox-contract/issues/127) Fix contract filtering
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "netbox-contract"
version = "2.0.15"
version = "2.1.0"
authors = [
{ name="Marc Lebreuil", email="[email protected]" },
]
description = "Contract management plugin for Netbox"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
'python-dateutil',
]
Expand Down
4 changes: 2 additions & 2 deletions src/netbox_contract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ class ContractsConfig(PluginConfig):
name = 'netbox_contract'
verbose_name = 'Netbox contract'
description = 'Contract management plugin for Netbox'
version = '2.0.15'
version = '2.1.0'
author = 'Marc Lebreuil'
author_email = '[email protected]'
base_url = 'contracts'
min_version = '3.5.0'
min_version = '4.0.2'
required_settings = []
default_settings = {
'top_level_menu': False,
Expand Down
2 changes: 1 addition & 1 deletion src/netbox_contract/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from netbox.views.generic.utils import get_prerequisite_model
from tenancy.views import ObjectContactsView
from utilities.forms import restrict_form_fields
from utilities.utils import normalize_querydict
from utilities.querydict import normalize_querydict
from utilities.views import register_model_view

from . import filtersets, forms, tables
Expand Down

0 comments on commit e05ed61

Please sign in to comment.