From 6998a119a1bb9d7add52c5c8161e14c9e5b6dae4 Mon Sep 17 00:00:00 2001 From: shacharl Date: Sun, 25 May 2025 22:38:28 +0300 Subject: [PATCH 1/2] bump version for release --- setup.py | 2 +- src/ctm_python_client/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 259d5ce..fcca217 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.0", + version="2.5.1", 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 9f12c8e..ed5ca9e 100644 --- a/src/ctm_python_client/__init__.py +++ b/src/ctm_python_client/__init__.py @@ -1,2 +1,2 @@ -__version__ = '2.5.0' +__version__ = '2.5.1' __author__ = 'BMC Software' From 121b665b9c8560a028d3039b99203175b6d004b8 Mon Sep 17 00:00:00 2001 From: shacharl Date: Sun, 25 May 2025 22:41:29 +0300 Subject: [PATCH 2/2] bump version for release --- tests/test_sanity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sanity.py b/tests/test_sanity.py index 5bb1834..2148311 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.0' + assert ctm_python_client.__version__ == '2.5.1'