diff --git a/CHANGELOG.md b/CHANGELOG.md index 660a9a2a..360cfd16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil ## `1.0.0-dev14` +### Enhancements + +- Added method `Files.download_uss` to download USS files to disk +- Added support to `Tso` class for loading TSO profile properties + ### Bug Fixes - Fixed `Files.download_dsn` and `Files.download_binary_dsn` failing to write contents to disk [#179](https://github.com/zowe/zowe-client-python-sdk/issues/179) @@ -17,12 +22,11 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Fixed `Files.upload_to_uss` displaying an unclosed file warning - Fixed loading environment variables when there is no schema file in current directory -### Enhancements +## `1.0.0-dev13` -- Added method `Files.download_uss` to download USS files to disk -- Added support to `Tso` class for loading TSO profile properties +### Enhancements -## `1.0.0-dev13` +- Next Breaking: Updated core SDK method `RequestHandler.perform_streamed_request` to return response object instead of raw buffer. [#245](https://github.com/zowe/zowe-client-python-sdk/pull/245) ### Bug Fixes @@ -30,10 +34,6 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Fixed an issue with `Jobs.list_jobs` user correlator parameter [#242](https://github.com/zowe/zowe-client-python-sdk/issues/242) - Fixed default encoding for I/O operations to be UTF-8 on Windows [#243](https://github.com/zowe/zowe-client-python-sdk/issues/243) -### Enhancements - -- Next Breaking: Updated core SDK method `RequestHandler.perform_streamed_request` to return response object instead of raw buffer. [#245](https://github.com/zowe/zowe-client-python-sdk/pull/245) - ## `1.0.0-dev12` ### Bug Fixes diff --git a/release.config.js b/release.config.js index 33027773..000d9fd2 100644 --- a/release.config.js +++ b/release.config.js @@ -2,7 +2,8 @@ module.exports = { branches: [ { name: "main", - level: "minor" + level: "none", + prerelease: true }, { name: "zowe-v?-lts", @@ -16,7 +17,9 @@ module.exports = { plugins: [ "@octorelease/changelog", "@octorelease/pypi", - "@octorelease/github", + ["@octorelease/github", { + publishRelease: true + }], "@octorelease/git" ] };