From 2fdf6414ede45078962af7f6b9737afbcf6683ee Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Mon, 14 Oct 2024 11:34:52 -0700 Subject: [PATCH] Update 1.16.1 version.py and RELEASE.md (#80) * Mark tfx_bsl compatible with Protobuf v26+. PiperOrigin-RevId: 684974824 * Update 1.16.1 in version.py --------- Co-authored-by: tfx-bsl-team --- RELEASE.md | 18 ++++++++++++++++++ setup.py | 2 +- tfx_bsl/version.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index c83e327..7250f1c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,21 @@ +# Version 1.16.1 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Relax dependency on Protobuf to include version 5.x + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 1.16.0 ## Major Features and Improvements diff --git a/setup.py b/setup.py index 705b4c6..f9ab386 100644 --- a/setup.py +++ b/setup.py @@ -172,7 +172,7 @@ def select_constraint(default, nightly=None, git_master=None): 'google-api-python-client>=1.7.11,<2', 'numpy>=1.22.0', 'pandas>=1.0,<2', - 'protobuf>=4.25.2,<5;python_version>="3.11"', + 'protobuf>=4.25.2,<6;python_version>="3.11"', 'protobuf>=3.20.3,<5;python_version<"3.11"', 'pyarrow>=10,<11', 'tensorflow' + select_constraint( diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index a7913e6..33c6722 100644 --- a/tfx_bsl/version.py +++ b/tfx_bsl/version.py @@ -14,4 +14,4 @@ """Contains the version string of tfx_bsl.""" # Note that setup.py uses this version. -__version__ = '1.16.0' +__version__ = '1.16.1'