diff --git a/netbox_script_manager/__init__.py b/netbox_script_manager/__init__.py index 6293d11..283935f 100644 --- a/netbox_script_manager/__init__.py +++ b/netbox_script_manager/__init__.py @@ -2,7 +2,7 @@ __author__ = """Simon Toft""" __email__ = "festll234@gmail.com" -__version__ = "1.0.0" +__version__ = "1.0.1" from netbox.plugins import PluginConfig @@ -12,7 +12,7 @@ class NetboxScriptManagerConfig(PluginConfig): name = "netbox_script_manager" verbose_name = "Script Manager" description = "Improved custom script support for netbox" - version = "1.0.0" + version = "1.0.1" base_url = "script-manager" default_settings = { "DEFAULT_QUEUE": "default", diff --git a/setup.cfg b/setup.cfg index d447fc1..46a15f8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index b6a761b..5397231 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,6 @@ packages=find_packages(), test_suite="tests", url="https://github.com/kkthxbye-code/netbox_script_manager", - version="1.0.0", + version="1.0.1", zip_safe=False, )