From c567bed5c633679f2231e498fb19eebf0a245b8f Mon Sep 17 00:00:00 2001 From: "pavel.butuzov" Date: Mon, 20 Jul 2026 15:47:57 +0300 Subject: [PATCH] fix: TMS-40498: fix the WorkItemApiResult model. --- testit-adapter-behave/setup.py | 2 +- testit-adapter-nose/setup.py | 2 +- testit-adapter-pytest/setup.py | 2 +- testit-adapter-robotframework/setup.py | 2 +- testit-python-commons/setup.py | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/testit-adapter-behave/setup.py b/testit-adapter-behave/setup.py index 080300c..04a3e6f 100644 --- a/testit-adapter-behave/setup.py +++ b/testit-adapter-behave/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "4.2.11" +VERSION = "4.2.12" setup( name='testit-adapter-behave', diff --git a/testit-adapter-nose/setup.py b/testit-adapter-nose/setup.py index bc226c0..4873516 100644 --- a/testit-adapter-nose/setup.py +++ b/testit-adapter-nose/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = "4.2.11" +VERSION = "4.2.12" setup( name='testit-adapter-nose', diff --git a/testit-adapter-pytest/setup.py b/testit-adapter-pytest/setup.py index e8a8c94..2fa60b7 100644 --- a/testit-adapter-pytest/setup.py +++ b/testit-adapter-pytest/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "4.2.11" +VERSION = "4.2.12" setup( name='testit-adapter-pytest', diff --git a/testit-adapter-robotframework/setup.py b/testit-adapter-robotframework/setup.py index 6aad9e2..f66eaae 100644 --- a/testit-adapter-robotframework/setup.py +++ b/testit-adapter-robotframework/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "4.2.11" +VERSION = "4.2.12" setup( name='testit-adapter-robotframework', diff --git a/testit-python-commons/setup.py b/testit-python-commons/setup.py index 47263ad..f0bc64f 100644 --- a/testit-python-commons/setup.py +++ b/testit-python-commons/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "4.2.11" +VERSION = "4.2.12" setup( name='testit-python-commons', @@ -25,5 +25,5 @@ py_modules=['testit', 'testit_python_commons'], packages=find_packages(where='src'), package_dir={'': 'src'}, - install_requires=['pluggy', 'tomli', 'testit-api-client==7.5.11'] + install_requires=['pluggy', 'tomli', 'testit-api-client==7.5.12'] )