diff --git a/pyproject.toml b/pyproject.toml index 667357a..f400b52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rosrestpy" -version = "0.8.0" +version = "0.9.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 aafa391..4ecf1ce 100644 --- a/ros/__init__.py +++ b/ros/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.0" +__version__ = "0.9.0" 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 85f6988..49eebec 100644 --- a/tests/test_rospy.py +++ b/tests/test_rospy.py @@ -3,7 +3,7 @@ class TestRos: def test_version(self): - assert __version__ == "0.8.0" + assert __version__ == "0.9.0" def test_log(self, ros: Ros): for log in ros.log():