mirror of
https://github.com/FreeOpcUa/opcua-asyncio
synced 2025-10-29 17:07:18 +08:00
v1.1.6
This commit is contained in:
@@ -15,7 +15,7 @@ dependencies = [
|
||||
"wait_for2==0.3.2;python_version<'3.12'",
|
||||
]
|
||||
|
||||
version = "1.1.5"
|
||||
version = "1.1.6"
|
||||
name = "asyncua"
|
||||
description = "Pure Python OPC-UA client and server library"
|
||||
requires-python = ">=3.9"
|
||||
|
||||
@@ -5,7 +5,7 @@ import os
|
||||
def bump_version():
|
||||
with open("pyproject.toml") as f:
|
||||
s = f.read()
|
||||
m = re.search(r'version = "(.*)\.(.*)\.(.*)",', s)
|
||||
m = re.search(r'version = "(.*)\.(.*)\.(.*)"', s)
|
||||
v1, v2, v3 = m.groups()
|
||||
oldv = "{0}.{1}.{2}".format(v1, v2, v3)
|
||||
newv = "{0}.{1}.{2}".format(v1, v2, str(int(v3) + 1))
|
||||
|
||||
Reference in New Issue
Block a user