chore(sdk): release KFP SDK 2.7.0 (#10461)

This commit is contained in:
Connor McCarthy 2024-02-14 11:37:53 -08:00 committed by GitHub
parent 664deaf933
commit ae62b1113a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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.7.0/',
'title':
'2.7.0',
'aliases': ['stable'],
},
{
'version':
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.6.0/',
'title':
'2.6.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.7.0
## Features
* Support local execution of sequential pipelines [\#10423](https://github.com/kubeflow/pipelines/pull/10423)
* Support local execution of `dsl.importer` components [\#10431](https://github.com/kubeflow/pipelines/pull/10431)

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.6.0'
__version__ = '2.7.0'
import sys
import warnings