From 5f191577b43bcd762c14358e7e73c884d5e94740 Mon Sep 17 00:00:00 2001 From: Damien Garros Date: Tue, 29 Dec 2020 07:39:21 -0500 Subject: [PATCH] Upgrade version to 2.1.0 --- README.md | 8 ++++++-- netbox_onboarding/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7f1437d..15adc81 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,13 @@ pip install ntc-netbox-plugin-onboarding systemctl restart netbox netbox-rq ``` -> The ntc-netbox-plugin-onboarding v1.3 is compatible with NetBox 2.8 +### Compatibility Matrix -> The ntc-netbox-plugin-onboarding v2 is compatible with NetBox 2.8 and NetBox 2.9 +| | Netbox 2.8 | Netbox 2.9 | Netbox 2.10 | +|-----------------------|------------|------------|-------------| +| Onboarding Plugin 1.3 | X | | | +| Onboarding Plugin 2.0 | X | X | | +| Onboarding Plugin 2.1 | X | X | X | To ensure NetBox Onboarding plugin is automatically re-installed during future upgrades, create a file named `local_requirements.txt` (if not already existing) in the NetBox root directory (alongside `requirements.txt`) and list the `ntc-netbox-plugin-onboarding` package: diff --git a/netbox_onboarding/__init__.py b/netbox_onboarding/__init__.py index e1d740d..ac2781c 100644 --- a/netbox_onboarding/__init__.py +++ b/netbox_onboarding/__init__.py @@ -12,7 +12,7 @@ limitations under the License. """ -__version__ = "2.0.0" +__version__ = "2.1.0" from extras.plugins import PluginConfig diff --git a/pyproject.toml b/pyproject.toml index 38cf21a..bd17a17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ntc-netbox-plugin-onboarding" -version = "2.0.0" +version = "2.1.0" description = "A plugin for NetBox to easily onboard new devices." authors = ["Network to Code, LLC "] license = "Apache-2.0"