diff --git a/pyproject.toml b/pyproject.toml index 87f83aa..8b35af8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rosrestpy" -version = "0.10.0" +version = "0.11.0" description = "RouterOS v7 REST API python module" authors = ["hexatester "] license = "GPL-3.0-only" diff --git a/ros/__init__.py b/ros/__init__.py index 145146a..3637f85 100644 --- a/ros/__init__.py +++ b/ros/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.11.0" from .inteface import InterfaceModule from .ip import IPModule from .mpls import MPLSModule diff --git a/tests/test_rospy.py b/tests/test_rospy.py index a250abf..1e60037 100644 --- a/tests/test_rospy.py +++ b/tests/test_rospy.py @@ -3,7 +3,7 @@ class TestRos: def test_version(self): - assert __version__ == "0.10.0" + assert __version__ == "0.11.0" def test_log(self, ros: Ros): for log in ros.log():