Skip to content

Update 1.16.1 in version.py and RELEASE.md #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 15, 2024
Merged
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
23 changes: 22 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# Version 1.16.1

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Relax dependency on Protobuf to include version 5.x

## Known Issues

* N/A

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.16.0

## Major Features and Improvements
Expand All @@ -19,4 +41,3 @@
## Deprecations

* N/A

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def select_constraint(default, nightly=None, git_master=None):
'joblib>=1.2.0', # Dependency for multi-processing.
'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',
'pyfarmhash>=0.2.2,<0.4',
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_data_validation/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of TFDV."""

# Note that setup.py uses this version.
__version__ = '1.16.0'
__version__ = '1.16.1'