From deb24e7a22be7e8264ca80f3c035acca7156f4a6 Mon Sep 17 00:00:00 2001 From: RefaelBeker7 Date: Sun, 1 Dec 2024 10:54:23 +0200 Subject: [PATCH] Support run ondemand Automation-API Control-M --- 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 727fadb..03bdfb1 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.3.7", + version="2.4.0", 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 5661ce1..cb387db 100644 --- a/src/ctm_python_client/__init__.py +++ b/src/ctm_python_client/__init__.py @@ -1,2 +1,2 @@ -__version__ = '2.3.7' +__version__ = '2.4.0' __author__ = 'BMC Software' \ No newline at end of file diff --git a/tests/test_sanity.py b/tests/test_sanity.py index 9b8975a..64cdb92 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.3.7' + assert ctm_python_client.__version__ == '2.4.0'