Skip to content

Commit b6b25ac

Browse files
committed
TFDV 1.10.0 Release
PiperOrigin-RevId: 470825260
1 parent 65f1d05 commit b6b25ac

File tree

6 files changed

+33
-9
lines changed

6 files changed

+33
-9
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ other *untested* combinations may also work.
171171

172172
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
173173
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
174-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.9.0 | n/a | 1.9.0
174+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | n/a | 1.10.1
175+
[1.10.0](https://github.com/tensorflow/data-validation/blob/v1.10.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | n/a | 1.10.1
175176
[1.9.0](https://github.com/tensorflow/data-validation/blob/v1.9.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.9 | 1.9.0 | n/a | 1.9.0
176177
[1.8.0](https://github.com/tensorflow/data-validation/blob/v1.8.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.8 | 1.8.0 | n/a | 1.8.0
177178
[1.7.0](https://github.com/tensorflow/data-validation/blob/v1.7.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15 / 2.8 | 1.7.0 | n/a | 1.7.0

RELEASE.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,38 @@
66

77
## Bug Fixes and Other Changes
88

9-
* Depends on `apache-beam[gcp]>=2.40,<3`.
9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.10.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
1023
* Skew pipeline supports counting pairs of feature values in base/test.
24+
* Depends on `apache-beam[gcp]>=2.40,<3`.
1125
* Depends on `pyarrow>=6,<7`.
26+
* Depends on `tfx-bsl>=1.10.1,<1.11.0`.
27+
* Depends on `tensorflow-metadata>=1.10.0,<1.11.0`.
1228

1329
## Known Issues
1430

31+
* N/A
32+
1533
## Breaking Changes
1634

35+
* N/A
36+
1737
## Deprecations
1838

39+
* N/A
40+
1941
# Version 1.9.0
2042

2143
## Major Features and Improvements

g3doc/install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ other *untested* combinations may also work.
177177

178178
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
179179
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
180-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.9.0 | n/a | 1.9.0
180+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | n/a | 1.10.1
181+
[1.10.0](https://github.com/tensorflow/data-validation/blob/v1.10.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | n/a | 1.10.1
181182
[1.9.0](https://github.com/tensorflow/data-validation/blob/v1.9.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.9 | 1.9.0 | n/a | 1.9.0
182183
[1.8.0](https://github.com/tensorflow/data-validation/blob/v1.8.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.8 | 1.8.0 | n/a | 1.8.0
183184
[1.7.0](https://github.com/tensorflow/data-validation/blob/v1.7.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15 / 2.8 | 1.7.0 | n/a | 1.7.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ def select_constraint(default, nightly=None, git_master=None):
190190
'six>=1.12,<2',
191191
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
192192
'tensorflow-metadata' + select_constraint(
193-
default='>=1.9.0,<1.10',
194-
nightly='>=1.10.0.dev',
193+
default='>=1.10.0,<1.11',
194+
nightly='>=1.11.0.dev',
195195
git_master='@git+https://github.com/tensorflow/metadata@master'),
196196
'tfx-bsl' + select_constraint(
197-
default='>=1.9.0,<1.10',
198-
nightly='>=1.10.0.dev',
197+
default='>=1.10.1,<1.11',
198+
nightly='>=1.11.0.dev',
199199
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
200200
],
201201
extras_require={

tensorflow_data_validation/version.py

Lines changed: 1 addition & 1 deletion
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__ = '1.10.0.dev'
18+
__version__ = '1.11.0.dev'

tensorflow_data_validation/workspace.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def tf_data_validation_workspace():
1919
# Fetch tf.Metadata repo from GitHub.
2020
git_repository(
2121
name = "com_github_tensorflow_metadata",
22-
commit = "3fb0d94ed474cbc6269b594239a95b0367029e34",
22+
commit = "6703ba1095f8a2fe3567f1a2209c819b530c64de",
2323
remote = "https://github.com/tensorflow/metadata.git",
2424
)
2525
# LINT.ThenChange(//third_party/py/tensorflow_data_validation/google/copy.bara.sky)

0 commit comments

Comments
 (0)