From a4e4b496844d4ea04169f49f20533be82f64e826 Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Wed, 22 May 2024 21:49:40 +0200 Subject: [PATCH] chore(version): Bump version to 0.0.3 --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- README.md | 2 +- netbox_aci_plugin/__init__.py | 2 +- netbox_aci_plugin/version.py | 2 +- pyproject.toml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 27a7c40..05df6d0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -13,7 +13,7 @@ body: attributes: label: NetBox ACI Plugin version description: What version of NetBox ACI Plugin are you currently running? - placeholder: v0.0.2 + placeholder: v0.0.3 validations: required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 554ff1e..514edb0 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -16,7 +16,7 @@ body: attributes: label: NetBox ACI Plugin version description: What version of NetBox ACI Plugin are you currently running? - placeholder: v0.0.2 + placeholder: v0.0.3 validations: required: true - type: input diff --git a/README.md b/README.md index 920e9c2..31d4d33 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Documentation: https://pheus.github.io/netbox-aci-plugin/ | NetBox Version | Plugin Version | |----------------|----------------| -| 4.0 | 0.0.2 | +| 4.0 | 0.0.3 | ## Installing diff --git a/netbox_aci_plugin/__init__.py b/netbox_aci_plugin/__init__.py index 4df4ef5..74896ee 100644 --- a/netbox_aci_plugin/__init__.py +++ b/netbox_aci_plugin/__init__.py @@ -2,7 +2,7 @@ __author__ = """Martin Hauser""" __email__ = "git@pheus.dev" -__version__ = "0.0.2" +__version__ = "0.0.3" from netbox.plugins import PluginConfig diff --git a/netbox_aci_plugin/version.py b/netbox_aci_plugin/version.py index 3b93d0b..27fdca4 100644 --- a/netbox_aci_plugin/version.py +++ b/netbox_aci_plugin/version.py @@ -1 +1 @@ -__version__ = "0.0.2" +__version__ = "0.0.3" diff --git a/pyproject.toml b/pyproject.toml index 987a7e7..155dd4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-aci-plugin" -version = "0.0.2" +version = "0.0.3" authors = [ {name = "Martin Hauser", email = "git@pheus.dev"}, ] @@ -16,7 +16,7 @@ readme = "README.md" license = {file = "LICENSE"} classifiers=[ - 'Development Status :: 1 - Planning', + 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'Natural Language :: English', "Programming Language :: Python :: 3 :: Only",