From 8f10bcdf162fcc930171e92fad7685ae73bf33a0 Mon Sep 17 00:00:00 2001 From: Yaqi Ji Date: Wed, 25 Aug 2021 19:58:04 -0700 Subject: [PATCH] chore: Release KFP SDK and v2 launcher 1.7.2 (#6442) * Update RELEASE.md * Update __init__.py * Update v2_compat.py * Update RELEASE.md --- sdk/RELEASE.md | 35 +++++++++++++++++++++++++++- sdk/python/kfp/__init__.py | 2 +- sdk/python/kfp/compiler/v2_compat.py | 2 +- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index e5693c635b2..9e89a60dabe 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -1,7 +1,6 @@ # Current Version (Still in Development) ## Major Features and Improvements -- Add support to specify description for pipeline version #TBD. ## Breaking Changes @@ -13,9 +12,43 @@ ## Bug Fixes and Other Changes +## Documentation Updates + +# 1.7.2 + +## Major Features and Improvements + +* Add support to specify description for pipeline version #6395. +* Add support for schema_version in pipeline #6366 +* Add support for enabling service account for cloud scheduler in google client #6013 + +## Breaking Changes + +* N/A + +### For Pipeline Authors + +* N/A + +### For Component Authors + +* N/A + +## Deprecations + +* N/A + +## Bug Fixes and Other Changes + +* Refactor and move v2 related code to under the v2 namespace #6358 +* Fix importer not taking output from upstream #6439 +* Clean up the unused arg in AIPlatformCient docstring #6406 +* Add BaseModel data classes and pipeline saving #6372 ## Documentation Updates +* N/A + # 1.7.1 ## Major Features and Improvements diff --git a/sdk/python/kfp/__init__.py b/sdk/python/kfp/__init__.py index 775caab610c..59385c1c434 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__ = '1.7.1' +__version__ = '1.7.2' from . import components from . import containers diff --git a/sdk/python/kfp/compiler/v2_compat.py b/sdk/python/kfp/compiler/v2_compat.py index 97017335250..c23bd0e9e8c 100644 --- a/sdk/python/kfp/compiler/v2_compat.py +++ b/sdk/python/kfp/compiler/v2_compat.py @@ -23,7 +23,7 @@ from kubernetes import client as k8s_client -_DEFAULT_LAUNCHER_IMAGE = "gcr.io/ml-pipeline/kfp-launcher:1.7.1" +_DEFAULT_LAUNCHER_IMAGE = "gcr.io/ml-pipeline/kfp-launcher:1.7.2" def update_op(op: dsl.ContainerOp,