From ed8fe8aba6423c85d6ce38b23778e5e5cf58687f Mon Sep 17 00:00:00 2001 From: dancohen Date: Sun, 30 Nov 2025 16:17:38 +0200 Subject: [PATCH] Update version from 2.5.7 to 2.5.8 for release --- setup.py | 2 +- src/ctm_python_client/__init__.py | 2 +- tests/test_sanity.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ac5f129..60ed558 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ name="ctm-python-client", packages=find_packages(where="src"), package_dir={"": "src"}, - version="2.5.7", + version="2.5.8", description="Python Workflows for Control-M", long_description=long_description, long_description_content_type='text/markdown', diff --git a/src/ctm_python_client/__init__.py b/src/ctm_python_client/__init__.py index bbb07dd..cc0e3e8 100644 --- a/src/ctm_python_client/__init__.py +++ b/src/ctm_python_client/__init__.py @@ -1,2 +1,2 @@ -__version__ = '2.5.7' +__version__ = '2.5.8' __author__ = 'BMC Software' diff --git a/tests/test_sanity.py b/tests/test_sanity.py index dd7f56c..d087414 100644 --- a/tests/test_sanity.py +++ b/tests/test_sanity.py @@ -2,6 +2,6 @@ def test_version_author(): import ctm_python_client assert ctm_python_client.__author__ == 'BMC Software' - assert ctm_python_client.__version__ == '2.5.7' + assert ctm_python_client.__version__ == '2.5.8'