chore(sdk): release KFP SDK 2.7.0 (#10461)
This commit is contained in:
parent
664deaf933
commit
ae62b1113a
|
|
@ -132,12 +132,19 @@ html_theme_options = {
|
||||||
True,
|
True,
|
||||||
'version_info': [
|
'version_info': [
|
||||||
# need to use the sdk- prefix to avoid conflict with the BE's GitHub release tags
|
# 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':
|
'version':
|
||||||
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.6.0/',
|
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.6.0/',
|
||||||
'title':
|
'title':
|
||||||
'2.6.0',
|
'2.6.0',
|
||||||
'aliases': ['stable'],
|
'aliases': [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'version':
|
'version':
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
# Current Version (in development)
|
# Current Version (in development)
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
## Breaking changes
|
||||||
|
|
||||||
|
## Deprecations
|
||||||
|
|
||||||
|
## Bug fixes and other changes
|
||||||
|
|
||||||
|
## Documentation updates
|
||||||
|
|
||||||
|
# 2.7.0
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
* Support local execution of sequential pipelines [\#10423](https://github.com/kubeflow/pipelines/pull/10423)
|
* 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)
|
* Support local execution of `dsl.importer` components [\#10431](https://github.com/kubeflow/pipelines/pull/10431)
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
|
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
|
||||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
||||||
|
|
||||||
__version__ = '2.6.0'
|
__version__ = '2.7.0'
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import warnings
|
import warnings
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue