chore(sdk): release KFP SDK 2.0.0b12 (#8823)

This commit is contained in:
Chen Sun 2023-02-08 09:46:17 -08:00 committed by GitHub
parent cc5373281d
commit 0fc174ae28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View File

@ -136,6 +136,11 @@ html_theme_options = {
'title': 'master',
'aliases': [],
},
{
'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b12/',
'title': 'v2.0.0b12',
'aliases': [],
},
{
'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b11/',
'title': 'v2.0.0b11',

View File

@ -1,5 +1,17 @@
# Current Version (in development)
## Features
## Breaking changes
## Deprecations
## Bug fixes and other changes
## Documentation updates
# 2.0.0-beta.12
## Features
* Support fanning-in parameter outputs from a task in a `dsl.ParellelFor` context using `dsl.Collected` [\#8631](https://github.com/kubeflow/pipelines/pull/8631)

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.11'
__version__ = '2.0.0-beta.12'
TYPE_CHECK = True