From 0b87d8b9a22c72241f66b4de36d45967250bca25 Mon Sep 17 00:00:00 2001 From: Olamide Ojo Date: Sun, 20 Oct 2024 15:36:56 +0100 Subject: [PATCH 1/3] update readme Signed-off-by: Olamide Ojo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f212e44..e9b8baa1 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ Create a dictionary to handle communication with the plug-in: Alternatively, you can use an existing Zowe CLI profile instead: ```python - from zowe.zos_core_for_zowe_sdk import ProfileManager + from zowe.core_for_zowe_sdk import ProfileManager from zowe.zos_console_for_zowe_sdk import Console profile = ProfileManager().load(profile_type="zosmf") From 2bbd30833934c5e4959e430ed2e10ae7fbc3a8da Mon Sep 17 00:00:00 2001 From: Olamide Ojo Date: Fri, 25 Oct 2024 15:17:31 +0100 Subject: [PATCH 2/3] Use the SDK name consistently Signed-off-by: Olamide Ojo --- CHANGELOG.md | 1 + README.md | 2 +- scripts/license_header.py | 2 +- src/README.md | 4 ++-- src/core/setup.py | 2 +- src/core/zowe/core_for_zowe_sdk/__init__.py | 2 +- src/core/zowe/core_for_zowe_sdk/config_file.py | 2 +- src/core/zowe/core_for_zowe_sdk/connection.py | 2 +- src/core/zowe/core_for_zowe_sdk/constants.py | 2 +- src/core/zowe/core_for_zowe_sdk/credential_manager.py | 2 +- src/core/zowe/core_for_zowe_sdk/custom_warnings.py | 2 +- src/core/zowe/core_for_zowe_sdk/exceptions.py | 2 +- src/core/zowe/core_for_zowe_sdk/logger.py | 2 +- src/core/zowe/core_for_zowe_sdk/profile_constants.py | 2 +- src/core/zowe/core_for_zowe_sdk/profile_manager.py | 2 +- src/core/zowe/core_for_zowe_sdk/request_handler.py | 2 +- src/core/zowe/core_for_zowe_sdk/sdk_api.py | 2 +- src/core/zowe/core_for_zowe_sdk/session.py | 2 +- src/core/zowe/core_for_zowe_sdk/session_constants.py | 2 +- src/core/zowe/core_for_zowe_sdk/validators.py | 2 +- src/core/zowe/core_for_zowe_sdk/zosmf_profile.py | 2 +- src/secrets/zowe/secrets_for_zowe_sdk/__init__.py | 2 +- src/setup.py | 2 +- src/zos_console/setup.py | 2 +- src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py | 2 +- src/zos_console/zowe/zos_console_for_zowe_sdk/console.py | 2 +- .../zowe/zos_console_for_zowe_sdk/response/__init__.py | 2 +- .../zowe/zos_console_for_zowe_sdk/response/console.py | 2 +- src/zos_files/setup.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/files.py | 2 +- .../zowe/zos_files_for_zowe_sdk/response/__init__.py | 2 +- .../zowe/zos_files_for_zowe_sdk/response/datasets.py | 2 +- .../zowe/zos_files_for_zowe_sdk/response/file_system.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py | 2 +- src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py | 2 +- src/zos_jobs/setup.py | 2 +- src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py | 2 +- src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py | 2 +- src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/__init__.py | 2 +- src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py | 2 +- src/zos_tso/setup.py | 2 +- src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py | 2 +- src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py | 2 +- src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py | 2 +- src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py | 2 +- src/zosmf/setup.py | 2 +- src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py | 2 +- src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py | 2 +- src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py | 2 +- src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py | 2 +- 55 files changed, 56 insertions(+), 55 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d118fa03..cccfc8a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -139,3 +139,4 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Fixed profile merge order to match Node.js SDK [#190](https://github.com/zowe/zowe-client-python-sdk/issues/190) - Fixed issue for datasets and jobs with special characters in URL [#211](https://github.com/zowe/zowe-client-python-sdk/issues/211) - Fixed exception handling in session.py [#213](https://github.com/zowe/zowe-client-python-sdk/issues/213) +- Fixed the inconsistent use of the SDK name across SDKs in all files by implementing the "find and replace" tool. [#328](https://github.com/zowe/zowe-client-python-sdk/issues/328) \ No newline at end of file diff --git a/README.md b/README.md index e9b8baa1..f437add1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Zowe Python Client SDK +# Zowe Client Python SDK ![](https://img.shields.io/badge/license-EPL--2.0-blue) [![Latest Release](https://img.shields.io/github/v/release/zowe/zowe-client-python-sdk)](https://github.com/zowe/zowe-client-python-sdk/releases/latest) [![Documentation Status](https://readthedocs.org/projects/zowe-client-python-sdk/badge/?version=latest)](https://zowe-client-python-sdk.readthedocs.io/en/latest/index.html) diff --git a/scripts/license_header.py b/scripts/license_header.py index 27541bf5..3b1a09fd 100644 --- a/scripts/license_header.py +++ b/scripts/license_header.py @@ -2,7 +2,7 @@ import sys # Define the license header you expect in each file -LICENSE_HEADER = '''"""Zowe Python Client SDK. +LICENSE_HEADER = '''"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/README.md b/src/README.md index 9a527396..dd8d4312 100644 --- a/src/README.md +++ b/src/README.md @@ -1,7 +1,7 @@ -Zowe Python Client SDK +Zowe Client Python SDK ====================== -The Zowe Python Client SDK consists of Python packages that enable programmatic interactions with z/OS REST API interfaces. +The Zowe Client Python SDK consists of Python packages that enable programmatic interactions with z/OS REST API interfaces. [Zowe Docs](https://docs.zowe.org/stable/user-guide/sdks-using) provide more information on installing and using the SDK. diff --git a/src/core/setup.py b/src/core/setup.py index 3137f09c..736af552 100644 --- a/src/core/setup.py +++ b/src/core/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/__init__.py b/src/core/zowe/core_for_zowe_sdk/__init__.py index 798c95d9..9745f098 100644 --- a/src/core/zowe/core_for_zowe_sdk/__init__.py +++ b/src/core/zowe/core_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/config_file.py b/src/core/zowe/core_for_zowe_sdk/config_file.py index 62e4ca18..b21d87bc 100644 --- a/src/core/zowe/core_for_zowe_sdk/config_file.py +++ b/src/core/zowe/core_for_zowe_sdk/config_file.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/connection.py b/src/core/zowe/core_for_zowe_sdk/connection.py index 61c5b321..58cba803 100644 --- a/src/core/zowe/core_for_zowe_sdk/connection.py +++ b/src/core/zowe/core_for_zowe_sdk/connection.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/constants.py b/src/core/zowe/core_for_zowe_sdk/constants.py index 89767a59..9c0bb913 100644 --- a/src/core/zowe/core_for_zowe_sdk/constants.py +++ b/src/core/zowe/core_for_zowe_sdk/constants.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/credential_manager.py b/src/core/zowe/core_for_zowe_sdk/credential_manager.py index f1cc85e8..1add2526 100644 --- a/src/core/zowe/core_for_zowe_sdk/credential_manager.py +++ b/src/core/zowe/core_for_zowe_sdk/credential_manager.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/custom_warnings.py b/src/core/zowe/core_for_zowe_sdk/custom_warnings.py index 12f7f567..bfea5bb5 100644 --- a/src/core/zowe/core_for_zowe_sdk/custom_warnings.py +++ b/src/core/zowe/core_for_zowe_sdk/custom_warnings.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/exceptions.py b/src/core/zowe/core_for_zowe_sdk/exceptions.py index fe80bc68..920c2fda 100644 --- a/src/core/zowe/core_for_zowe_sdk/exceptions.py +++ b/src/core/zowe/core_for_zowe_sdk/exceptions.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/logger.py b/src/core/zowe/core_for_zowe_sdk/logger.py index 06421d62..3cf2305a 100644 --- a/src/core/zowe/core_for_zowe_sdk/logger.py +++ b/src/core/zowe/core_for_zowe_sdk/logger.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/profile_constants.py b/src/core/zowe/core_for_zowe_sdk/profile_constants.py index b19b95fe..dc7d0c0b 100644 --- a/src/core/zowe/core_for_zowe_sdk/profile_constants.py +++ b/src/core/zowe/core_for_zowe_sdk/profile_constants.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/profile_manager.py b/src/core/zowe/core_for_zowe_sdk/profile_manager.py index 172823c1..72b72058 100644 --- a/src/core/zowe/core_for_zowe_sdk/profile_manager.py +++ b/src/core/zowe/core_for_zowe_sdk/profile_manager.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/request_handler.py b/src/core/zowe/core_for_zowe_sdk/request_handler.py index 3a8d6680..113d133a 100644 --- a/src/core/zowe/core_for_zowe_sdk/request_handler.py +++ b/src/core/zowe/core_for_zowe_sdk/request_handler.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/sdk_api.py b/src/core/zowe/core_for_zowe_sdk/sdk_api.py index c11a6948..2772dc49 100644 --- a/src/core/zowe/core_for_zowe_sdk/sdk_api.py +++ b/src/core/zowe/core_for_zowe_sdk/sdk_api.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/session.py b/src/core/zowe/core_for_zowe_sdk/session.py index d91d2a5a..9fdc0ef6 100644 --- a/src/core/zowe/core_for_zowe_sdk/session.py +++ b/src/core/zowe/core_for_zowe_sdk/session.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/session_constants.py b/src/core/zowe/core_for_zowe_sdk/session_constants.py index dd579629..72bb3970 100644 --- a/src/core/zowe/core_for_zowe_sdk/session_constants.py +++ b/src/core/zowe/core_for_zowe_sdk/session_constants.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/validators.py b/src/core/zowe/core_for_zowe_sdk/validators.py index ab2f4b20..33bf1f12 100644 --- a/src/core/zowe/core_for_zowe_sdk/validators.py +++ b/src/core/zowe/core_for_zowe_sdk/validators.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/core/zowe/core_for_zowe_sdk/zosmf_profile.py b/src/core/zowe/core_for_zowe_sdk/zosmf_profile.py index bbbddb2d..7ac723fc 100644 --- a/src/core/zowe/core_for_zowe_sdk/zosmf_profile.py +++ b/src/core/zowe/core_for_zowe_sdk/zosmf_profile.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/secrets/zowe/secrets_for_zowe_sdk/__init__.py b/src/secrets/zowe/secrets_for_zowe_sdk/__init__.py index 823a1512..454bbc82 100644 --- a/src/secrets/zowe/secrets_for_zowe_sdk/__init__.py +++ b/src/secrets/zowe/secrets_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/setup.py b/src/setup.py index 60d7b049..d5ad6f19 100644 --- a/src/setup.py +++ b/src/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_console/setup.py b/src/zos_console/setup.py index 1ee7f52d..83bf284e 100644 --- a/src/zos_console/setup.py +++ b/src/zos_console/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py b/src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py index e119b351..a0cba1b4 100644 --- a/src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py +++ b/src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_console/zowe/zos_console_for_zowe_sdk/console.py b/src/zos_console/zowe/zos_console_for_zowe_sdk/console.py index 7f14050f..2f905a48 100644 --- a/src/zos_console/zowe/zos_console_for_zowe_sdk/console.py +++ b/src/zos_console/zowe/zos_console_for_zowe_sdk/console.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_console/zowe/zos_console_for_zowe_sdk/response/__init__.py b/src/zos_console/zowe/zos_console_for_zowe_sdk/response/__init__.py index 6a6658ab..d01a0e13 100644 --- a/src/zos_console/zowe/zos_console_for_zowe_sdk/response/__init__.py +++ b/src/zos_console/zowe/zos_console_for_zowe_sdk/response/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_console/zowe/zos_console_for_zowe_sdk/response/console.py b/src/zos_console/zowe/zos_console_for_zowe_sdk/response/console.py index 33525e00..d307fdb5 100644 --- a/src/zos_console/zowe/zos_console_for_zowe_sdk/response/console.py +++ b/src/zos_console/zowe/zos_console_for_zowe_sdk/response/console.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/setup.py b/src/zos_files/setup.py index a9d124a0..22fd53fa 100644 --- a/src/zos_files/setup.py +++ b/src/zos_files/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py index c04223ac..a2edb10b 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py index 51965f86..28d8326a 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py index 32057878..9f60f3fb 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py index 936965a5..736b8ac2 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py index de59397d..5088e7f0 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/files.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/files.py index 0bf56c86..2c804f18 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/files.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/files.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/__init__.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/__init__.py index c52af03a..df5c0ad3 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/__init__.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/datasets.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/datasets.py index 76fe92d3..83e8bcda 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/datasets.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/datasets.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/file_system.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/file_system.py index 30e41750..7560b72e 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/file_system.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/file_system.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py index d535aa33..b28aa579 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py index 4be1f732..162a3f28 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_jobs/setup.py b/src/zos_jobs/setup.py index 665f343b..9c78a581 100644 --- a/src/zos_jobs/setup.py +++ b/src/zos_jobs/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py index 102adc80..8635ee60 100644 --- a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py +++ b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py index 1ae81fab..ea239857 100644 --- a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py +++ b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/__init__.py b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/__init__.py index 7a0b25c1..09ee6d97 100644 --- a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/__init__.py +++ b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py index 4afbb9d8..82fc2da4 100644 --- a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py +++ b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_tso/setup.py b/src/zos_tso/setup.py index 710a0d2b..d21a58eb 100644 --- a/src/zos_tso/setup.py +++ b/src/zos_tso/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py index d9e5e2e5..4a1741cd 100644 --- a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py +++ b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py index 985b9b2a..8f43e5e4 100644 --- a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py +++ b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py index 1e779700..d543a8b2 100644 --- a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py +++ b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py index b0e16471..c1eb89c9 100644 --- a/src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py +++ b/src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zosmf/setup.py b/src/zosmf/setup.py index 3cc34061..83489c60 100644 --- a/src/zosmf/setup.py +++ b/src/zosmf/setup.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py b/src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py index 9599fdb4..fe2b6d91 100644 --- a/src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py +++ b/src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py b/src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py index 150ab151..704a8cda 100644 --- a/src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py +++ b/src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py b/src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py index 90aac30b..32a84c83 100644 --- a/src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py +++ b/src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py b/src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py index 5c4f26b1..6d7343c2 100644 --- a/src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py +++ b/src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py @@ -1,4 +1,4 @@ -"""Zowe Python Client SDK. +"""Zowe Client Python SDK. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at From 6909b9ffd7a616fef7f401c33564adc9c0618a60 Mon Sep 17 00:00:00 2001 From: Fernando Rijo Cedeno <37381190+zFernand0@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:46:26 -0400 Subject: [PATCH 3/3] chore: changelog update :yum: Signed-off-by: Fernando Rijo Cedeno <37381190+zFernand0@users.noreply.github.com> --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cccfc8a2..c67a29ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Turning of logger at the class-constructor level [#316] (https://github.com/zowe/zowe-client-python-sdk/issues/316) +### Bug Fixes + +- Fixed the inconsistent use of the SDK name across SDKs in all files by implementing the "find and replace" tool. [#328](https://github.com/zowe/zowe-client-python-sdk/issues/328) + ## `1.0.0-dev21` ### Bug Fixes @@ -139,4 +143,3 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Fixed profile merge order to match Node.js SDK [#190](https://github.com/zowe/zowe-client-python-sdk/issues/190) - Fixed issue for datasets and jobs with special characters in URL [#211](https://github.com/zowe/zowe-client-python-sdk/issues/211) - Fixed exception handling in session.py [#213](https://github.com/zowe/zowe-client-python-sdk/issues/213) -- Fixed the inconsistent use of the SDK name across SDKs in all files by implementing the "find and replace" tool. [#328](https://github.com/zowe/zowe-client-python-sdk/issues/328) \ No newline at end of file