Skip to content

Commit 80922e7

Browse files
committed
TFDV 1.1.0 Release
PiperOrigin-RevId: 380870094
1 parent d10ba5c commit 80922e7

File tree

6 files changed

+32
-8
lines changed

6 files changed

+32
-8
lines changed

README.md

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

166166
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
167167
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
168-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.0.0 | n/a | 1.0.0
168+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | n/a | 1.1.0
169+
[1.1.0](https://github.com/tensorflow/data-validation/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | n/a | 1.1.0
169170
[1.0.0](https://github.com/tensorflow/data-validation/blob/v1.0.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | n/a | 1.0.0
170171
[0.30.0](https://github.com/tensorflow/data-validation/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | n/a | 0.30.0
171172
[0.29.0](https://github.com/tensorflow/data-validation/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | n/a | 0.29.0

RELEASE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,38 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.1.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
923
* Optimized certain stats generators that needs to materialize the input
1024
RecordBatches.
1125
* Depends on `protobuf>=3.13,<4`.
26+
* Depends on `tensorflow-metadata>=1.1,<1.2`.
27+
* Depends on `tfx-bsl>=1.1,<1.2`.
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.0.0
2042

2143
## Major Features and Improvements

g3doc/install.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.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.0.0 | n/a | 1.0.0
174+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | n/a | 1.1.0
175+
[1.1.0](https://github.com/tensorflow/data-validation/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | n/a | 1.1.0
175176
[1.0.0](https://github.com/tensorflow/data-validation/blob/v1.0.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | n/a | 1.0.0
176177
[0.30.0](https://github.com/tensorflow/data-validation/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | n/a | 0.30.0
177178
[0.29.0](https://github.com/tensorflow/data-validation/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | n/a | 0.29.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ def select_constraint(default, nightly=None, git_master=None):
189189
'six>=1.12,<2',
190190
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3',
191191
'tensorflow-metadata' + select_constraint(
192-
default='>=1.0,<1.1',
193-
nightly='>=1.1.0.dev',
192+
default='>=1.1,<1.2',
193+
nightly='>=1.2.0.dev',
194194
git_master='@git+https://github.com/tensorflow/metadata@master'),
195195
'tfx-bsl' + select_constraint(
196-
default='>=1.0,<1.1',
197-
nightly='>=1.1.0.dev',
196+
default='>=1.1,<1.2',
197+
nightly='>=1.2.0.dev',
198198
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
199199
],
200200
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.1.0.dev'
18+
__version__ = '1.2.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 = "4af2da3ccf6f944af925508c3954abe2c1c6d7c8",
22+
commit = "f01d580217c1c557a06ea21709422ca290797797",
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)