Skip to content

Commit

Permalink
chore: Release KFP SDK and v2 launcher 1.7.2 (#6442)
Browse files Browse the repository at this point in the history
* Update RELEASE.md

* Update __init__.py

* Update v2_compat.py

* Update RELEASE.md
  • Loading branch information
ji-yaqi authored Aug 26, 2021
1 parent 96bb175 commit 8f10bcd
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
35 changes: 34 additions & 1 deletion sdk/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Current Version (Still in Development)

## Major Features and Improvements
- Add support to specify description for pipeline version #TBD.

## Breaking Changes

Expand All @@ -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
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__ = '1.7.1'
__version__ = '1.7.2'

from . import components
from . import containers
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/compiler/v2_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8f10bcd

Please sign in to comment.