1
0
mirror of https://github.com/FreeOpcUa/opcua-asyncio synced 2025-10-29 17:07:18 +08:00

new release v0.9.8

This commit is contained in:
oroulet
2020-12-25 11:47:17 +01:00
parent a6e9cf2ab2
commit 1edd4b4ed3
3 changed files with 6 additions and 5 deletions

View File

@@ -4,8 +4,9 @@
name: Upload Python Package
on:
release:
types: [created]
push:
tags:
- "v*"
jobs:
deploy:

View File

@@ -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(f"git commit -m 'new release {v}'")
os.system(f"git tag {v} -m 'new release {v}'")
os.system(f"git commit -m 'new release v{v}'")
os.system(f"git tag v{v} -m 'new release v{v}'")
ans = input("change committed, push to server?(Y/n)")
if ans in ("", "y", "yes"):
os.system("git push")

View File

@@ -7,7 +7,7 @@ pytest_runner = ['pytest-runner'] if needs_pytest else []
setup(
name="asyncua",
version="0.9.7",
version="0.9.8",
description="Pure Python OPC-UA client and server library",
author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com",