Commit a6e9cf2a authored by oroulet's avatar oroulet

new release 0.9.7

parent 4e0ef672
......@@ -24,8 +24,8 @@ def release():
ans = input("version bumped, commiting?(Y/n)")
if ans in ("", "y", "yes"):
os.system("git add setup.py")
os.system("git commit -m 'new release'")
os.system(f"git tag {v}")
os.system(f"git commit -m 'new release {v}'")
os.system(f"git tag {v} -m 'new release {v}'")
ans = input("change committed, push to server?(Y/n)")
if ans in ("", "y", "yes"):
os.system("git push")
......
......@@ -7,7 +7,7 @@ pytest_runner = ['pytest-runner'] if needs_pytest else []
setup(
name="asyncua",
version="0.9.6",
version="0.9.7",
description="Pure Python OPC-UA client and server library",
author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment