chore(sdk): release KFP SDK 2.5.0

This commit is contained in:
connor-mccarthy 2024-01-05 14:02:51 -08:00
parent 2897a10f59
commit 1df6b7e4e9
3 changed files with 21 additions and 2 deletions

View File

@ -132,12 +132,19 @@ html_theme_options = {
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.5.0/',
'title':
'2.5.0',
'aliases': ['stable'],
},
{
'version':
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.4.0/',
'title':
'2.4.0',
'aliases': ['stable'],
'aliases': [],
},
{
'version':

View File

@ -1,5 +1,17 @@
# Current Version (in development)
## Features
## Breaking changes
## Deprecations
## Bug fixes and other changes
## Documentation updates
# 2.5.0
## Features
* Add support for `dsl.PIPELINE_TASK_EXECUTOR_OUTPUT_PATH_PLACEHOLDER` and `dsl.PIPELINE_TASK_EXECUTOR_INPUT_PLACEHOLDER` [\#10240](https://github.com/kubeflow/pipelines/pull/10240)
* Add support for local component execution using `local.init()`, `DockerRunner`, and `SubprocessRunner`

View File

@ -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.4.0'
__version__ = '2.5.0'
import sys
import warnings