Skip to content

Commit 2eed0b8

Browse files
authored
chore(sdk): release kfp sdk 2.11.0 (#11451)
Signed-off-by: Chen Sun <chensun@users.noreply.github.com>
1 parent d49b5d0 commit 2eed0b8

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

docs/versions.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
[
22
{
3-
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
4-
"title": "2.10.1",
3+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/",
4+
"title": "2.11.0",
55
"aliases": [
66
"stable",
77
"latest"
88
]
99
},
10+
{
11+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
12+
"title": "2.10.1",
13+
"aliases": []
14+
},
1015
{
1116
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.0/",
1217
"title": "2.10.0",

sdk/RELEASE.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
# Current Version (in development)
22

3+
## Features
4+
5+
## Breaking changes
6+
7+
## Deprecations
8+
9+
## Bug fixes and other changes
10+
11+
## Documentation updates
12+
13+
# 2.11.0
14+
315
## Features
416
* 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)
5-
* Add the ability to parameterize container images for tasks within pipelines
17+
* Add the ability to parameterize container images for tasks within pipelines [\#11404](https://github.com/kubeflow/pipelines/pull/11404)
618

719
## Breaking changes
820

@@ -11,6 +23,7 @@
1123
## Bug fixes and other changes
1224
* Add error handling for image build/push failures in KFP SDK. [\#11164](https://github.com/kubeflow/pipelines/pull/11356)
1325
* Backport fixes in kubeflow/pipelines#11075. [\#11392])(https://github.com/kubeflow/pipelines/pull/11392)
26+
* Depends on `kfp-pipeline-spec==0.6.0`. [\#11447](https://github.com/kubeflow/pipelines/pull/11447)
1427

1528
## Documentation updates
1629

sdk/python/kfp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
1717
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1818

19-
__version__ = '2.10.1'
19+
__version__ = '2.11.0'
2020

2121
import sys
2222
import warnings

0 commit comments

Comments
 (0)