From 5ae436174c79c381e59f6b7195756ba1cfc94b8c Mon Sep 17 00:00:00 2001 From: connor-mccarthy Date: Thu, 11 Jan 2024 13:41:25 -0800 Subject: [PATCH] chore(sdk): release KFP SDK 2.6.0 --- docs/conf.py | 9 ++++++++- sdk/RELEASE.md | 12 ++++++++++++ sdk/python/kfp/__init__.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 944a70398a5..cf6d7398dca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -132,12 +132,19 @@ True, 'version_info': [ # 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.6.0/', + 'title': + '2.6.0', + 'aliases': ['stable'], + }, { 'version': 'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.5.0/', 'title': '2.5.0', - 'aliases': ['stable'], + 'aliases': [], }, { 'version': diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 64e45839af0..d4081786910 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -2,6 +2,18 @@ ## Features +## Breaking changes + +## Deprecations + +## Bug fixes and other changes + +## Documentation updates + +# 2.6.0 + +## Features + ## Breaking changes * Soft breaking change for [Protobuf 3 EOL](https://protobuf.dev/support/version-support/#python). Migrate to `protobuf==4`. Drop support for `protobuf==3`. [\#10307](https://github.com/kubeflow/pipelines/pull/10307) diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index 349d5f08eb6..c696ab3e5a9 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.5.0' +__version__ = '2.6.0' import sys import warnings