From 1043a88842e1a6c2115de771d63ea258abaaa46d Mon Sep 17 00:00:00 2001 From: Connor McCarthy Date: Mon, 28 Nov 2022 14:58:42 -0800 Subject: [PATCH] chore(sdk): release KFP SDK 2.0.0b7 (#8503) * update release notes * bump version * add docs version to dropdown --- docs/conf.py | 5 +++++ sdk/RELEASE.md | 18 ++++++++++++++++++ sdk/python/kfp/__init__.py | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 159b6ff0ed..5f96c71c12 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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', diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index ee38796c73..0b637ff97c 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -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 diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index 482debc196..586a647713 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.6' +__version__ = '2.0.0-beta.7' TYPE_CHECK = True