diff --git a/README.md b/README.md index b8d3e00..91a3247 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The idea is that an external system uses some assets stored in netbox_inventory, ## Compatibility -This plugin requires netbox version 4.0 to work. Older versions of the plugin +This plugin requires netbox version 4.1 to work. Older versions of the plugin support older netbox version as per table below: | NetBox Version | Plugin Version | diff --git a/netbox_inventory/tests/test_load.py b/netbox_inventory/tests/test_load.py index 1dd8f63..dcb6626 100644 --- a/netbox_inventory/tests/test_load.py +++ b/netbox_inventory/tests/test_load.py @@ -11,7 +11,7 @@ class NetboxInventoryVersionTestCase(SimpleTestCase): """ def test_version(self): - assert __version__ == "2.0.2" + assert __version__ == "2.1.0" class AppTest(APITestCase): diff --git a/netbox_inventory/version.py b/netbox_inventory/version.py index 668c344..a33997d 100644 --- a/netbox_inventory/version.py +++ b/netbox_inventory/version.py @@ -1 +1 @@ -__version__ = '2.0.2' +__version__ = '2.1.0' diff --git a/pyproject.toml b/pyproject.toml index 24429b5..8b87bd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-inventory" -version = "2.0.2" +version = "2.1.0" authors = [ { name="Matej Vadnjal", email="matej.vadnjal@arnes.si" }, ]