1
0
mirror of https://github.com/FreeOpcUa/opcua-asyncio synced 2025-10-29 17:07:18 +08:00
This commit is contained in:
Olivier
2025-04-08 13:05:54 +02:00
committed by oroulet
parent cde0e3b10d
commit 7e7c62648b
2 changed files with 2 additions and 2 deletions

View File

@@ -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"

View File

@@ -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))