diff --git a/README.md b/README.md index 8bf3f0e..966d37b 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Status](https://img.shields.io/pypi/v/testit-python-commons?style=plastic)](http | 5.5 | 3.10.1.post550 | 3.10.1.post550 | 3.10.1.post550 | 3.10.1.post550 | | 5.6 | 3.11.6.post560 | 3.11.6.post560 | 3.11.6.post560 | 3.11.6.post560 | | 5.7 | 4.2.1.post570 | 4.2.1.post570 | 4.2.1.post570 | 4.2.1.post570 | +| 5.8 | 4.3.0.post580 | 4.3.0.post580 | 4.3.0.post580 | 4.3.0.post580 | | Cloud | 4.2.0 + | 4.2.0 + | 4.2.0 + | 4.2.0 + | 1. For current versions, see the releases tab. diff --git a/testit-adapter-behave/setup.py b/testit-adapter-behave/setup.py index 8c1922c..a854961 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.10" +VERSION = "4.3.1.post580" setup( name='testit-adapter-behave', diff --git a/testit-adapter-nose/setup.py b/testit-adapter-nose/setup.py index 2e00620..c2e3606 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.10" +VERSION = "4.3.1.post580" setup( name='testit-adapter-nose', diff --git a/testit-adapter-pytest/setup.py b/testit-adapter-pytest/setup.py index c8e6c13..585fe73 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.10" +VERSION = "4.3.1.post580" setup( name='testit-adapter-pytest', diff --git a/testit-adapter-robotframework/setup.py b/testit-adapter-robotframework/setup.py index 2fb4353..fce9984 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.10" +VERSION = "4.3.1.post580" setup( name='testit-adapter-robotframework', diff --git a/testit-python-commons/setup.py b/testit-python-commons/setup.py index 1205c64..65cf448 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.10" +VERSION = "4.3.1.post580" 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.6.0.post580'] ) diff --git a/testit-python-commons/src/testit_python_commons/client/converter.py b/testit-python-commons/src/testit_python_commons/client/converter.py index ea2783a..a3c2e82 100644 --- a/testit-python-commons/src/testit_python_commons/client/converter.py +++ b/testit-python-commons/src/testit_python_commons/client/converter.py @@ -341,6 +341,7 @@ def link_to_link_post_model(link: Link) -> LinkPostModel: return LinkPostModel( url=link.get_url(), title=link.get_title(), + type=LinkType("Related"), description=link.get_description(), has_info=True, ) @@ -360,6 +361,7 @@ def link_to_link_create_api_model(link: Link) -> LinkCreateApiModel: return LinkCreateApiModel( url=link.get_url(), title=link.get_title(), + type=LinkType("Related"), description=link.get_description(), has_info=True, ) @@ -379,6 +381,7 @@ def link_to_link_put_model(link: Link) -> LinkUpdateApiModel: return LinkUpdateApiModel( url=link.get_url(), title=link.get_title(), + type=LinkType("Related"), description=link.get_description(), has_info=True, )