From 690af696e37f41ff3ac3c7ef33fe92ed9fb025a2 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Mon, 8 Jun 2026 19:24:55 +0000 Subject: [PATCH 1/3] Align master branch with 1.21.0 release changes and update version to 1.22.0.dev --- RELEASE.md | 16 +++++++++++++++- tensorflow_metadata/version.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 8494b48..15d65e5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,9 +6,21 @@ ## Bug Fixes and Other Changes -* Align with TensorFlow 2.21 dependencies. +## Breaking Changes + +## Deprecations + +# Version 1.21.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + * Upgrade Protobuf to `6.31.1`. * Upgrade `bazel_skylib` to `1.9.0`. +* Bumped the minimum bazel version required to build `tfmd` to 7.4.1 (tested with 7.7.0). * Add support for Python 3.12 and 3.13. ## Breaking Changes @@ -17,6 +29,8 @@ ## Deprecations +* N/A + # Version 1.17.3 ## Major Features and Improvements diff --git a/tensorflow_metadata/version.py b/tensorflow_metadata/version.py index 1f72982..eef3010 100644 --- a/tensorflow_metadata/version.py +++ b/tensorflow_metadata/version.py @@ -14,4 +14,4 @@ """Contains the version string of TFMD.""" # Note that setup.py uses this version. -__version__ = "1.18.0.dev" +__version__ = '1.22.0.dev' From c14abb17865c45f5e7204f6c139c106061bd8350 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Mon, 8 Jun 2026 20:19:58 +0000 Subject: [PATCH 2/3] style: use double quotes for __version__ to satisfy ruff-format (#66) --- tensorflow_metadata/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow_metadata/version.py b/tensorflow_metadata/version.py index eef3010..11265cc 100644 --- a/tensorflow_metadata/version.py +++ b/tensorflow_metadata/version.py @@ -14,4 +14,4 @@ """Contains the version string of TFMD.""" # Note that setup.py uses this version. -__version__ = '1.22.0.dev' +__version__ = "1.22.0.dev" From f246f3678f0c79ca759921c649b188ed47618f87 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Tue, 9 Jun 2026 06:59:15 +0000 Subject: [PATCH 3/3] ci: pass PYPI_API_TOKEN secret to upload action in wheels.yml (#69) --- .github/workflows/wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 49bf662..bfb7fdd 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -90,6 +90,7 @@ jobs: - name: Upload to PyPI uses: pypa/gh-action-pypi-publish@release/v1.12 with: + password: ${{ secrets.PYPI_API_TOKEN }} packages-dir: wheels/ # already checked, and the pkginfo/twine versions on this runner causes check to fail verify-metadata: false