From 319e1e5da9f133558ee0c4bfd923e30626d99b3a Mon Sep 17 00:00:00 2001 From: RefaelBeker7 Date: Tue, 2 Jul 2024 11:14:22 +0300 Subject: [PATCH] release 2.3.2 --- 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 400215c..cb2190d 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.1", + version="2.3.2", 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 1ddd3d7..72cc23e 100644 --- a/src/ctm_python_client/__init__.py +++ b/src/ctm_python_client/__init__.py @@ -1,2 +1,2 @@ -__version__ = '2.3.1' +__version__ = '2.3.2' __author__ = 'BMC Software' \ No newline at end of file diff --git a/tests/test_sanity.py b/tests/test_sanity.py index 15cc4f1..17d9301 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.1' + assert ctm_python_client.__version__ == '2.3.2'