diff --git a/docs/versions.json b/docs/versions.json index a18291236c4..0962a9d327a 100644 --- a/docs/versions.json +++ b/docs/versions.json @@ -1,12 +1,17 @@ [ { - "version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/", - "title": "2.10.1", + "version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/", + "title": "2.11.0", "aliases": [ "stable", "latest" ] }, + { + "version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/", + "title": "2.10.1", + "aliases": [] + }, { "version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.0/", "title": "2.10.0", diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index b66ca742793..d0c89d79200 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -1,8 +1,20 @@ # Current Version (in development) +## Features + +## Breaking changes + +## Deprecations + +## Bug fixes and other changes + +## Documentation updates + +# 2.11.0 + ## Features * Expose `--existing-token` flag in `kfp` CLI to allow users to provide an existing token for authentication. [\#11400](https://github.com/kubeflow/pipelines/pull/11400) -* Add the ability to parameterize container images for tasks within pipelines +* Add the ability to parameterize container images for tasks within pipelines [\#11404](https://github.com/kubeflow/pipelines/pull/11404) ## Breaking changes @@ -11,6 +23,7 @@ ## Bug fixes and other changes * Add error handling for image build/push failures in KFP SDK. [\#11164](https://github.com/kubeflow/pipelines/pull/11356) * Backport fixes in kubeflow/pipelines#11075. [\#11392])(https://github.com/kubeflow/pipelines/pull/11392) +* Depends on `kfp-pipeline-spec==0.6.0`. [\#11447](https://github.com/kubeflow/pipelines/pull/11447) ## Documentation updates diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index 052d931384a..7b374d84051 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.10.1' +__version__ = '2.11.0' import sys import warnings