chore(sdk): release KFP SDK 2.0.0b7 (#8503)

* update release notes

* bump version

* add docs version to dropdown
This commit is contained in:
Connor McCarthy 2022-11-28 14:58:42 -08:00 committed by GitHub
parent b829e4a5da
commit 1043a88842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 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.0b7/',
'title': 'v2.0.0b7',
'aliases': [],
},
{
'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b6/',
'title': 'v2.0.0b6',

View File

@ -10,6 +10,24 @@
## Documentation updates
# 2.0.0-beta.7
## Features
* Add ability to skip building image when using `kfp component build` [\#8387](https://github.com/kubeflow/pipelines/pull/8387)
* Support single element `then` and `else_` arguments to `IfPresentPlaceholder` [\#8414](https://github.com/kubeflow/pipelines/pull/8414)
* Enable use of input and output placeholders in f-strings [\#8494](https://github.com/kubeflow/pipelines/pull/8494)
## Breaking changes
## Deprecations
## Bug fixes and other changes
* Block illegal `IfPresentPlaceholder` and `ConcatPlaceholder` authoring [\#8414](https://github.com/kubeflow/pipelines/pull/8414)
* Fix boolean default value compilation bug [\#8444](https://github.com/kubeflow/pipelines/pull/8444)
* Fix bug when writing to same file using gcsfuse and distributed training strategy in lightweight/containerized Python components [\#8455](https://github.com/kubeflow/pipelines/pull/8455)
## Documentation updates
* Clarify `PipelineTask.set_gpu_limit` reference docs [\#8477](https://github.com/kubeflow/pipelines/pull/8477)
# 2.0.0-beta.6

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