release kfp sdk 2.0.b13 (#8904)

This commit is contained in:
Connor McCarthy 2023-02-27 16:52:53 -08:00 committed by GitHub
parent 87062dbf22
commit 86554be46a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 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.0b13/',
'title': 'v2.0.0b13',
'aliases': [],
},
{
'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b12/',
'title': 'v2.0.0b12',

View File

@ -1,5 +1,16 @@
# Current Version (in development)
## Features
## Breaking changes
## Deprecations
## Bug fixes and other changes
## Documentation updates
# 2.0.0-beta.13
## Features
* Support fanning-in artifact outputs from a task in a `dsl.ParellelFor` context using `dsl.Collected` [\#8808](https://github.com/kubeflow/pipelines/pull/8808)
* Introduces a new syntax for pipeline tasks to consume outputs from the upstream task while at the same time ignoring if the upstream tasks succeeds or not. [\#8838](https://github.com/kubeflow/pipelines/pull/8838)

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