release kfp sdk 2.0.b13 (#8904)
This commit is contained in:
parent
87062dbf22
commit
86554be46a
|
@ -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',
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue