From 99828b4a7fb9b88935ceaca84418baa5b6b389e7 Mon Sep 17 00:00:00 2001 From: Arthur Date: Mon, 6 May 2024 11:24:09 -0700 Subject: [PATCH] update version number --- CHANGELOG.md | 4 ++++ README.md | 1 + netbox_healthcheck_plugin/__init__.py | 2 +- pyproject.toml | 7 +++---- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f2e954..7590e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.0 (2024-05006) + +* Updates for NetBox v4.0 + ## 0.1.2 (2024-04-08) * Fix django-health-check dependency in pyproject.toml diff --git a/README.md b/README.md index 20701b1..54cdd98 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ The features the plugin provides should be listed here. | 3.4 - 3.7 | 0.1.0 | | 3.4 - 3.7 | 0.1.2 | | 3.4 - 3.7 | 0.1.3 | +| 4.0. | 0.2.0 | ## Installing diff --git a/netbox_healthcheck_plugin/__init__.py b/netbox_healthcheck_plugin/__init__.py index dcb2f98..2c1aff6 100644 --- a/netbox_healthcheck_plugin/__init__.py +++ b/netbox_healthcheck_plugin/__init__.py @@ -2,7 +2,7 @@ __author__ = """Arthur Hanson""" __email__ = 'ahanson@netboxlabs.com' -__version__ = '0.1.5b1' +__version__ = '0.2.0' from netbox.plugins import PluginConfig diff --git a/pyproject.toml b/pyproject.toml index 77c3092..e3ca20d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-healthcheck-plugin" -version = "0.1.5b1" +version = "0.2.0" authors = [ {name = "Arthur Hanson", email = "ahanson@netboxlabs.com"}, ] @@ -19,13 +19,12 @@ classifiers=[ 'Intended Audience :: Developers', 'Natural Language :: English', "Programming Language :: Python :: 3 :: Only", - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', ] -requires-python = ">=3.8.1" +requires-python = ">=3.10.0" dependencies = [ 'django-health-check >= 3,<4' @@ -48,7 +47,7 @@ Tracker = "https://github.com/netbox-community/netbox-healthcheck-plugin/issues" [tool.black] line-length = 120 -target_version = ['py39', 'py310', 'py311', 'py312'] +target_version = ['py310', 'py311', 'py312'] [tool.setuptools.package-data] netbox_healthcheck_plugin = ["templates/**"]