From b6c660853e54878daca579d551ab329ab26e053d Mon Sep 17 00:00:00 2001 From: Connor McCarthy Date: Fri, 9 Jun 2023 10:59:05 -0700 Subject: [PATCH] chore(sdk): release KFP SDK 2.0.0-rc.2 (#9605) * release 2.0.0-rc.2 * update comment --- docs/conf.py | 9 ++++++++- sdk/RELEASE.md | 11 +++++++++++ sdk/python/kfp/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 89fe45fa29f..31a45c5a103 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -136,7 +136,14 @@ 'title': 'master', 'aliases': [], }, - # need to use the sdk-, to avoid conflict with the rc.1 BE release in GitHub tags + # need to use the sdk- prefix to avoid conflict with the BE's GitHub release tags + { + 'version': + 'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.0.0-rc.2/', + 'title': + 'v2.0.0rc2', + 'aliases': [], + }, { 'version': 'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.0.0-rc.1/', diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index fdb5d42b388..0e3d164457f 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -6,6 +6,17 @@ ## Deprecations +## Bug fixes and other changes + +## Documentation updates +# 2.0.0-rc.2 + +## Features + +## Breaking changes + +## Deprecations + ## Bug fixes and other changes * Fix integer value not allowed as float-typed return [\#9481](https://github.com/kubeflow/pipelines/pull/9481) * Change `kubernetes` version requirement from `kubernetes>=8.0.0,<24` to `kubernetes>=8.0.0,<27` [\#9545](https://github.com/kubeflow/pipelines/pull/9545) diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index f638123c980..5f7e4d1facd 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-rc.1' +__version__ = '2.0.0-rc.2' TYPE_CHECK = True