From 9e81b94d31841f464cc52e4707615cff6cf2ef1f Mon Sep 17 00:00:00 2001 From: Hedde van der Heide Date: Fri, 15 Apr 2022 09:02:19 +0200 Subject: [PATCH] bumped version --- README.rst | 6 +++--- src/netbox_slm/__init__.py | 2 +- src/setup.cfg | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 2e81056..0b9bb76 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ Software Lifecycle Management Installation Guide ~~~~~~~~~~~~~~~~~~ -WARNING: This plugin requires Netbox 3.1.X or higher! +WARNING: This plugin is only tested with Netbox 3.2 at this time. When using the Docker version of Netbox, first follow the `netbox-docker quickstart `__ @@ -22,13 +22,13 @@ to install the Netbox SLM plugin: 1. Add ``netbox_slm`` to the ``PLUGINS`` list in ``configuration/extra.py``. -2. Create a ``plugin_requirements.txt`` with ``netbox-slm==0.95`` as +2. Create a ``plugin_requirements.txt`` with ``netbox-slm==0.97`` as contents. 3. Create a ``Dockerfile-SLM`` with contents: .. code:: dockerfile - FROM netboxcommunity/netbox:v3.X.X + FROM netboxcommunity/netbox:v3.2.X COPY ./plugin_requirements.txt / RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt diff --git a/src/netbox_slm/__init__.py b/src/netbox_slm/__init__.py index d2f9a0b..8cfe177 100644 --- a/src/netbox_slm/__init__.py +++ b/src/netbox_slm/__init__.py @@ -5,7 +5,7 @@ class SLMConfig(PluginConfig): name = 'netbox_slm' verbose_name = 'Software Lifecycle Management' description = 'Software Lifecycle Management' - version = '0.96' + version = '0.97' author = 'Hedde van der Heide' author_email = 'hedde.vanderheide@ictu.nl' base_url = 'slm' diff --git a/src/setup.cfg b/src/setup.cfg index e08272e..6165f72 100644 --- a/src/setup.cfg +++ b/src/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = netbox-slm -version = 0.96 +version = 0.97 description = Software Lifecycle Management Netbox Plugin. # long_description = file: README.rst # long_description_content_type='text/x-rst'