Skip to content

Commit

Permalink
chore(sdk): release KFP SDK 2.5.0 (#10364)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy committed Jan 8, 2024
1 parent ca5f97d commit 55db6f5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,19 @@
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':
Expand Down
12 changes: 12 additions & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 55db6f5

Please sign in to comment.