From a64df04ee7853f2ad4c485f00d63db1636b71f8c Mon Sep 17 00:00:00 2001 From: ml-metadata-team Date: Tue, 4 Apr 2023 11:15:54 -0700 Subject: [PATCH] MLMD 1.13.0 Release PiperOrigin-RevId: 521815546 --- RELEASE.md | 10 ++++++++++ g3doc/get_started.md | 1 + ml_metadata/version.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 4ae1997f4..4ed4041c8 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,12 +2,22 @@ ## Major Features and Improvements +## Breaking Changes + +## Deprecations + +# Version 1.13.0 + +## Major Features and Improvements + * Fix filter query parsing for QueryLineageGraph when using queries with aliases. * Depends on `numpy~=1.22.0`. ## Breaking Changes +* N/A + ## Deprecations * Deprecated python 3.7 support. diff --git a/g3doc/get_started.md b/g3doc/get_started.md index 96140dcf3..5e02a6e1b 100644 --- a/g3doc/get_started.md +++ b/g3doc/get_started.md @@ -493,6 +493,7 @@ The list of `schema_version` used in MLMD releases are: ml-metadata (MLMD) | schema_version ------------------ | -------------- +1.13.0 | 10 1.12.0 | 10 1.11.0 | 10 1.10.0 | 8 diff --git a/ml_metadata/version.py b/ml_metadata/version.py index dc03eac53..5894099d5 100644 --- a/ml_metadata/version.py +++ b/ml_metadata/version.py @@ -15,4 +15,4 @@ """Contains the version string of ML Metadata.""" # Note that setup.py uses this version. -__version__ = '1.13.0.dev' +__version__ = '1.14.0.dev'