Skip to content

Commit

Permalink
version 2.0.2
Browse files Browse the repository at this point in the history
Add support for Netbox 3.5

Changes to be committed:
	modified:   README.md
	modified:   pyproject.toml
	modified:   src/netbox_contract/__init__.py
  • Loading branch information
mlebreuil committed Jun 4, 2023
1 parent 64c9228 commit a199c39
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,11 @@ FIELD_CHOICES = {
### version 2.0.0

Add a new contract asignement model to allow the assignement of contract not only to Circuits. The support for the direct Contract to Circuit relation will be removed in version 2.1.0 . In Order to migrate existing relations contract_migration.py script is provided and can be run from the django shell.

#### version 2.0.1

Add support contract assignement panel to devices.

#### version 2.0.2

Add support for Netbox 3.5 whcih become the minimum version supported to accoodate the removal of NetBoxModelCSVForm class (replaced by NetBoxModelImportForm) .
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "netbox-contract"
version = "2.0.1"
version = "2.0.2"
authors = [
{ name="Marc Lebreuil", email="[email protected]" },
]
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 @@ -4,11 +4,11 @@ class ContractsConfig(PluginConfig):
name = 'netbox_contract'
verbose_name = 'Netbox contract'
description = 'Contract management plugin for Netbox'
version = '2.0.1'
version = '2.0.2'
author = 'Marc Lebreuil'
author_email = '[email protected]'
base_url = 'contracts'
min_version = "3.4.0"
min_version = "3.5.0"
required_settings = []
default_settings = {
'top_level_menu': False,
Expand Down

0 comments on commit a199c39

Please sign in to comment.