chore(sdk): release kfp sdk 2.12.0 (#11679)
Signed-off-by: Chen Sun <chensun@users.noreply.github.com>
This commit is contained in:
parent
0a94ac418d
commit
c8fe908ba8
|
@ -1,12 +1,17 @@
|
|||
[
|
||||
{
|
||||
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/",
|
||||
"title": "2.11.0",
|
||||
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.0/",
|
||||
"title": "2.12.0",
|
||||
"aliases": [
|
||||
"stable",
|
||||
"latest"
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/",
|
||||
"title": "2.11.0",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
|
||||
"title": "2.10.1",
|
||||
|
|
|
@ -10,6 +10,26 @@
|
|||
|
||||
## Documentation updates
|
||||
|
||||
# 2.12.0
|
||||
|
||||
## Features
|
||||
|
||||
* Add support for placeholders in resource limits [\#11501](https://github.com/kubeflow/pipelines/pull/11501)
|
||||
* Introduce cache_key to sdk [\#11466](https://github.com/kubeflow/pipelines/pull/11466)
|
||||
* Add support for importing models stored in the Modelcar format (sidecar) [\#11606](https://github.com/kubeflow/pipelines/pull/11606)
|
||||
|
||||
## Breaking changes
|
||||
|
||||
## Deprecations
|
||||
|
||||
## Bug fixes and other changes
|
||||
|
||||
* dsl.component docstring typo [\#11547](https://github.com/kubeflow/pipelines/pull/11547)
|
||||
* Update broken api-connect link [\#11521](https://github.com/kubeflow/pipelines/pull/11521)
|
||||
* Fix kfp-sdk-test for different python versions [\#11559](https://github.com/kubeflow/pipelines/pull/11559)
|
||||
|
||||
## Documentation updates
|
||||
|
||||
# 2.11.0
|
||||
|
||||
## Features
|
||||
|
|
|
@ -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.11.0'
|
||||
__version__ = '2.12.0'
|
||||
|
||||
import sys
|
||||
import warnings
|
||||
|
|
Loading…
Reference in New Issue