diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 62e7c14e2f0..ee38796c735 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -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 diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index 5d2995908e1..482debc196f 100644 --- a/sdk/python/kfp/__init__.py +++ b/sdk/python/kfp/__init__.py @@ -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