diff --git a/docs/conf.py b/docs/conf.py index ee8191a3c1..35106f9172 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -136,6 +136,11 @@ html_theme_options = { 'title': 'master', 'aliases': [], }, + { + 'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b12/', + 'title': 'v2.0.0b12', + 'aliases': [], + }, { 'version': 'https://kubeflow-pipelines.readthedocs.io/en/2.0.0b11/', 'title': 'v2.0.0b11', diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 7a41420e1e..c604483374 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -1,5 +1,17 @@ # Current Version (in development) +## Features + +## Breaking changes + +## Deprecations + +## Bug fixes and other changes + +## Documentation updates + +# 2.0.0-beta.12 + ## Features * Support fanning-in parameter outputs from a task in a `dsl.ParellelFor` context using `dsl.Collected` [\#8631](https://github.com/kubeflow/pipelines/pull/8631) diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index de2698a014..94cd626c78 100644 --- a/sdk/python/kfp/__init__.py +++ b/sdk/python/kfp/__init__.py @@ -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.0.0-beta.11' +__version__ = '2.0.0-beta.12' TYPE_CHECK = True