Skip to content

Commit

Permalink
chore(sdk): release KFP SDK 2.1.2 (#9797)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy authored Jul 28, 2023
1 parent 540294a commit 25f6ee6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
'version':
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.1.1/',
'title':
'2.1.1',
'2.1.2',
'aliases': ['stable'],
},
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## Bug fixes and other changes

## Documentation updates
# 2.1.1
# 2.1.2

## Features
* Create "dependency-free" runtime package (only `typing_extensions` required) for Lightweight Python Components to reduce runtime dependency resolution errors [\#9710](https://github.com/kubeflow/pipelines/pull/9710), [\#9738](https://github.com/kubeflow/pipelines/pull/9738)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp-dsl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name='kfp-dsl',
version='2.1.1',
version='2.1.2',
description='A KFP SDK subpackage containing the DSL and runtime code.',
author='google',
author_email='[email protected]',
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.1.1'
__version__ = '2.1.2'

TYPE_CHECK = True

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ google-api-core>=1.31.5,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0
google-auth>=1.6.1,<3
# https://github.com/googleapis/python-storage/blob/main/CHANGELOG.md#221-2022-03-15
google-cloud-storage>=2.2.1,<3
kfp-dsl==2.1.1
kfp-dsl==2.1.2
# pin kfp-pipeline-spec to an exact version, since this is the contract between a given KFP SDK version and the BE. we don't want old version of the SDK to write new fields and to have the BE reject the new unsupported field (even if the new field backward compatible from a proto perspective)
kfp-pipeline-spec==0.2.2
# Update the upper version whenever a new major version of the
Expand Down

0 comments on commit 25f6ee6

Please sign in to comment.