diff --git a/pyproject.toml b/pyproject.toml index 8cb992f..0b4fa04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rosrestpy" -version = "0.1.9" +version = "0.1.10" 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 68ebf0f..cd0da96 100644 --- a/ros/__init__.py +++ b/ros/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.9" +__version__ = "0.1.10" from .inteface import InterfaceModule from .ip import IPModule from .ppp import PPPModule diff --git a/tests/test_rospy.py b/tests/test_rospy.py index 7104762..e32e720 100644 --- a/tests/test_rospy.py +++ b/tests/test_rospy.py @@ -3,7 +3,7 @@ class TestRos: def test_version(self): - assert __version__ == "0.1.9" + assert __version__ == "0.1.10" def test_log(self, ros): for log in ros.log: