From 8df22db75754b50b19fd367d6f882d4042dd9598 Mon Sep 17 00:00:00 2001 From: Chen Sun Date: Mon, 17 Oct 2022 17:30:27 -0700 Subject: [PATCH] chore(release): release sdk 2.0.0b6 (#8373) * release sdk 2.0.0b6 * address review comments --- sdk/RELEASE.md | 20 ++++++++++++++++++++ sdk/python/kfp/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) 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