diff --git a/README.md b/README.md index c536f46..2d15f13 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This plugin brings back the old global search method that was used in netbox pri | Netbox | Plugin | |---------------|----------| | NetBox < 4.0 | <= 0.1.3 | -| NetBox >= 4.0 | >= 0.2.0 | +| NetBox >= 4.0 | >= 1.0.0 | ## Installing diff --git a/netbox_old_search/__init__.py b/netbox_old_search/__init__.py index b75f3a1..99871ce 100644 --- a/netbox_old_search/__init__.py +++ b/netbox_old_search/__init__.py @@ -6,7 +6,7 @@ class NetboxOldSearch(PluginConfig): name = "netbox_old_search" verbose_name = "Old Search" description = "Netbox Old Search" - version = "0.1.3" + version = "0.2.0" base_url = "old-search" default_settings = {"show_menu": False, "replace_search": True} middleware = ["netbox_old_search.middleware.SearchRedirectMiddleware"] diff --git a/setup.py b/setup.py index 39c2344..dee7023 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ author_email="festll234@gmail.com", python_requires=">=3.8", classifiers=[ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "Programming Language :: Python :: 3", @@ -29,6 +29,6 @@ name="netbox-old-search", packages=find_packages(include=["netbox_old_search", "netbox_old_search.*"]), url="https://github.com/kkthxbye-code/netbox-old-search", - version="0.1.3", + version="1.0.0", zip_safe=False, )