Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Version 1.21.1

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Align pip package protobuf dependency requirement to `protobuf>=6.31.1,<7` to match compiled C++ extensions.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.21.0

## Major Features and Improvements
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ def run(self):
install_requires=[
"absl-py>=0.9,<3.0.0",
'googleapis-common-protos>=1.56.4,<2;python_version>="3.11"',
'protobuf>=4.25.2;python_version>="3.11"',
'protobuf>=4.21.6,<=6.32;python_version<"3.11"',
"protobuf>=6.31.1,<7",
],
python_requires=">=3.10,<4",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_metadata/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of TFMD."""

# Note that setup.py uses this version.
__version__ = "1.21.0"
__version__ = "1.21.1"
Loading