Skip to content

Commit e95ac95

Browse files
committed
TFDV 0.22.1 Release
PiperOrigin-RevId: 318163893
1 parent b862de2 commit e95ac95

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ other *untested* combinations may also work.
162162
|tensorflow-data-validation |tensorflow |apache-beam[gcp] |pyarrow |
163163
|--------------------------------------------------------------------------------------|------------------|-----------------|--------|
164164
|[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) |nightly (1.x/2.x) |2.20.0 |0.16.0 |
165+
|[0.22.1](https://github.com/tensorflow/data-validation/blob/v0.22.1/RELEASE.md) |1.15 / 2.2 |2.20.0 |0.16.0 |
165166
|[0.22.0](https://github.com/tensorflow/data-validation/blob/v0.22.0/RELEASE.md) |1.15 / 2.2 |2.20.0 |0.16.0 |
166167
|[0.21.5](https://github.com/tensorflow/data-validation/blob/v0.21.5/RELEASE.md) |1.15 / 2.1 |2.17.0 |0.15.0 |
167168
|[0.21.4](https://github.com/tensorflow/data-validation/blob/v0.21.4/RELEASE.md) |1.15 / 2.1 |2.17.0 |0.15.0 |

RELEASE.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- mdlint off(HEADERS_TOO_MANY_H1) -->
22

3-
# Current Version(Still in Development)
3+
# Version 0.22.1
44

55
## Major Features and Improvements
66

@@ -18,6 +18,8 @@
1818
* Trigger anomalies when a feature has a number of unique values that does not
1919
conform to the specified minimum/maximum.
2020
* Depends on `pandas>=0.24,<2`.
21+
* Depends on `tensorflow-metadata>=0.22.2,<0.23.0`.
22+
* Depends on `tfx-bsl>=0.22.1,<0.23.0`.
2123

2224
## Known Issues
2325

g3doc/install.md

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ other *untested* combinations may also work.
160160
tensorflow-data-validation | tensorflow | apache-beam[gcp] | pyarrow
161161
------------------------------------------------------------------------------------- | ----------------- | ---------------- | -------
162162
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | nightly (1.x/2.x) | 2.20.0 | 0.16.0
163+
[0.22.1](https://github.com/tensorflow/data-validation/blob/v0.22.1/RELEASE.md) | 1.15 / 2.2 | 2.20.0 | 0.16.0
163164
[0.22.0](https://github.com/tensorflow/data-validation/blob/v0.22.0/RELEASE.md) | 1.15 / 2.2 | 2.20.0 | 0.16.0
164165
[0.21.5](https://github.com/tensorflow/data-validation/blob/v0.21.5/RELEASE.md) | 1.15 / 2.1 | 2.17.0 | 0.15.0
165166
[0.21.4](https://github.com/tensorflow/data-validation/blob/v0.21.4/RELEASE.md) | 1.15 / 2.1 | 2.17.0 | 0.15.0

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ def _make_all_extra_requirements():
111111
'pyarrow>=0.16,<0.17',
112112
'six>=1.12,<2',
113113
'tensorflow>=1.15,!=2.0.*,<3',
114-
'tensorflow-metadata>=0.22,<0.23',
114+
'tensorflow-metadata>=0.22.2,<0.23',
115115
'tensorflow-transform>=0.22,<0.23',
116-
'tfx-bsl>=0.22,<0.23',
116+
'tfx-bsl>=0.22.1,<0.23',
117117
],
118118
extras_require={
119119
'mutual-information': _make_mutual_information_requirements(),

tensorflow_data_validation/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""Contains the version string of TFDV."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '0.23.0.dev'
18+
__version__ = '0.22.1'

0 commit comments

Comments
 (0)