chore(release): release sdk 2.0.0b6 (#8373)

* release sdk 2.0.0b6

* address review comments
This commit is contained in:
Chen Sun 2022-10-17 17:30:27 -07:00 committed by GitHub
parent ac02a0e191
commit 8df22db757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View File

@ -11,6 +11,26 @@
## Documentation updates
# 2.0.0-beta.6
## Features
## Breaking changes
## Deprecations
## Bug fixes and other changes
* Fix NamedTuple output with Dict/List bug [\#8316](https://github.com/kubeflow/pipelines/pull/8316)
* Fix PyPI typo in cli/component docstring [\#8361](https://github.com/kubeflow/pipelines/pull/8361)
* Fix "No KFP components found in file" error [\#8359](https://github.com/kubeflow/pipelines/pull/8359)
* CLI `kfp component build` generates runtime-requirements.txt [\#8372](https://github.com/kubeflow/pipelines/pull/8372)
* Throw exception for component parameter named Output [\#8367](https://github.com/kubeflow/pipelines/pull/8367)
## Documentation updates
* Improve KFP SDK reference documentation [\#8337](https://github.com/kubeflow/pipelines/pull/8337)
# 2.0.0-beta.5
## Features

View File

@ -16,7 +16,7 @@
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__version__ = '2.0.0-beta.5'
__version__ = '2.0.0-beta.6'
TYPE_CHECK = True