Skip to content

Commit

Permalink
Bumping version from 0.8.0 to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hexatester committed Jul 15, 2023
1 parent 6619f64 commit a4203ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion ros/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.0"
__version__ = "0.9.0"
from .inteface import InterfaceModule
from .ip import IPModule
from .ppp import PPPModule
Expand Down
2 changes: 1 addition & 1 deletion tests/test_rospy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit a4203ae

Please sign in to comment.