From ab66d9139c18f3e164b095eae1a45bbca99da4f8 Mon Sep 17 00:00:00 2001 From: Dmitry Ermakovich Date: Fri, 15 May 2026 23:47:04 +0300 Subject: [PATCH] feat: support 5.6 with latest improvements --- 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 ++-- update_versions.sh | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/testit-adapter-behave/setup.py b/testit-adapter-behave/setup.py index f807fb5b..9097b918 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.0" +VERSION = "4.2.0.post560" setup( name='testit-adapter-behave', diff --git a/testit-adapter-nose/setup.py b/testit-adapter-nose/setup.py index 13c2cffc..9168b28b 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.0" +VERSION = "4.2.0.post560" setup( name='testit-adapter-nose', diff --git a/testit-adapter-pytest/setup.py b/testit-adapter-pytest/setup.py index a81a3b90..0a226fbf 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.0" +VERSION = "4.2.0.post560" setup( name='testit-adapter-pytest', diff --git a/testit-adapter-robotframework/setup.py b/testit-adapter-robotframework/setup.py index 58cbaea2..c59f0e58 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.0" +VERSION = "4.2.0.post560" setup( name='testit-adapter-robotframework', diff --git a/testit-python-commons/setup.py b/testit-python-commons/setup.py index f90eab5f..593f114b 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.0" +VERSION = "4.2.0.post560" 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.6'] + install_requires=['pluggy', 'tomli', 'testit-api-client==7.5.0.post560'] ) diff --git a/update_versions.sh b/update_versions.sh index b13d17d1..67c8719e 100644 --- a/update_versions.sh +++ b/update_versions.sh @@ -1,7 +1,7 @@ #!/bin/bash -NEW_VERSION="4.2.0" -TESTIT_API_CLIENT_VERSION="7.5.6" +NEW_VERSION="4.2.0.post560" +TESTIT_API_CLIENT_VERSION="7.5.0.post560" echo "Updating all adapters to version: $NEW_VERSION" echo "Updating testit-api-client to version: $TESTIT_API_CLIENT_VERSION"