diff --git a/CHANGELOG.md b/CHANGELOG.md index c93b6c9c..a5eaa20c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil ### Enhancements +- Rename Python SDK bundle [#286](https://github.com/zowe/zowe-client-python-sdk/issues/286) - Added logger class to core SDK [#185](https://github.com/zowe/zowe-client-python-sdk/issues/185) - Added classes for handling `Datasets`, `USSFiles`, and `FileSystems` in favor of the single Files class. [#264](https://github.com/zowe/zowe-client-python-sdk/issues/264) - Refactored tests into proper folders and files and add more tests [#265](https://github.com/zowe/zowe-client-python-sdk/issues/265) diff --git a/README.md b/README.md index 27dc6ac1..3306fc17 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Alternatively, you can choose to install only a single subpackage for a smaller To install all Zowe SDK packages using pip: ``` -pip install -U --pre zowe +pip install -U --pre zowe-python-sdk-bundle ``` Or, to install a subpackage using pip: diff --git a/docs/source/usage/installation.rst b/docs/source/usage/installation.rst index c6853649..7b63c6fd 100644 --- a/docs/source/usage/installation.rst +++ b/docs/source/usage/installation.rst @@ -15,7 +15,7 @@ To install all Zowe SDK packages using pip: .. code-block:: - pip install -U --pre zowe + pip install -U --pre zowe-python-sdk-bundle To install only a subpackage using pip: diff --git a/src/setup.py b/src/setup.py index 3f93bbff..32d9596d 100644 --- a/src/setup.py +++ b/src/setup.py @@ -21,7 +21,7 @@ def resolve_sdk_dep(sdk_name, version_spec): if __name__ == "__main__": setup( - name="zowe", + name="zowe-python-sdk-bundle", version=__version__, description="Zowe Python SDK", long_description=open("../README.md", "r").read(),