Skip to content

Commit c8fe908

Browse files
authored
chore(sdk): release kfp sdk 2.12.0 (#11679)
Signed-off-by: Chen Sun <chensun@users.noreply.github.com>
1 parent 0a94ac4 commit c8fe908

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
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.11.0/",
4-
"title": "2.11.0",
3+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.0/",
4+
"title": "2.12.0",
55
"aliases": [
66
"stable",
77
"latest"
88
]
99
},
10+
{
11+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/",
12+
"title": "2.11.0",
13+
"aliases": []
14+
},
1015
{
1116
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
1217
"title": "2.10.1",

sdk/RELEASE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010

1111
## Documentation updates
1212

13+
# 2.12.0
14+
15+
## Features
16+
17+
* Add support for placeholders in resource limits [\#11501](https://github.com/kubeflow/pipelines/pull/11501)
18+
* Introduce cache_key to sdk [\#11466](https://github.com/kubeflow/pipelines/pull/11466)
19+
* Add support for importing models stored in the Modelcar format (sidecar) [\#11606](https://github.com/kubeflow/pipelines/pull/11606)
20+
21+
## Breaking changes
22+
23+
## Deprecations
24+
25+
## Bug fixes and other changes
26+
27+
* dsl.component docstring typo [\#11547](https://github.com/kubeflow/pipelines/pull/11547)
28+
* Update broken api-connect link [\#11521](https://github.com/kubeflow/pipelines/pull/11521)
29+
* Fix kfp-sdk-test for different python versions [\#11559](https://github.com/kubeflow/pipelines/pull/11559)
30+
31+
## Documentation updates
32+
1333
# 2.11.0
1434

1535
## Features

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.11.0'
19+
__version__ = '2.12.0'
2020

2121
import sys
2222
import warnings

0 commit comments

Comments
 (0)