diff --git a/README.rst b/README.rst index dd62825..7d9dce7 100644 --- a/README.rst +++ b/README.rst @@ -87,15 +87,6 @@ Netbox Django copy with auto-reload to develop the plugin pointing to the Dockerized postgres and redis instances, basically ignoring the netbox docker runtime server. -Gotcha’s -~~~~~~~~ - -*Netbox’s exception handler seems to supress initial Exceptions, -obfuscating missing imports or other Django related issues by re-raising -an opague error, e.g. netbox_slm plugin namespace doesnotexist. It’s -recommended to often check the runtime server or patch Netbox’s global -exception handler.* - Steps ~~~~~ diff --git a/src/netbox_slm/__init__.py b/src/netbox_slm/__init__.py index eae8de3..17ae416 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.94' + version = '0.95' 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 ade247d..b6f57b3 100644 --- a/src/setup.cfg +++ b/src/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = netbox-slm -version = 0.94 +version = 0.95 description = Software Lifecycle Management Netbox Plugin. # long_description = file: README.rst # long_description_content_type='text/x-rst'