Skip to content

Commit d687aa8

Browse files
committed
TFDV 1.11.0 Release
PiperOrigin-RevId: 488772102
1 parent 4d0b51d commit d687aa8

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-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.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | n/a | 1.10.1
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.11.0 | n/a | 1.11.0
175+
[1.11.0](https://github.com/tensorflow/data-validation/blob/v1.11.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | n/a | 1.11.0
175176
[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
176177
[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
177178
[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

RELEASE.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.11.0
16+
17+
## Major Features and Improvements
18+
519
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
620
will be removed in the next version. Please check the
721
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
822
to TF2.
923

10-
## Major Features and Improvements
11-
1224
* Add a `custom_validate_statistics` function to the validation API, and
1325
support passing custom validations to `validate_statistics`. Note that
1426
custom validation is not supported on Windows.
@@ -40,6 +52,8 @@
4052

4153
## Known Issues
4254

55+
* N/A
56+
4357
## Breaking Changes
4458

4559
* Histogram semantics are slightly changed, so that buckets include their
@@ -51,6 +65,8 @@
5165

5266
## Deprecations
5367

68+
* N/A
69+
5470
# Version 1.10.0
5571

5672
## 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.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | n/a | 1.10.1
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.11.0 | n/a | 1.11.0
181+
[1.11.0](https://github.com/tensorflow/data-validation/blob/v1.11.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | n/a | 1.11.0
181182
[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
182183
[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
183184
[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

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.*,!=2.9.*,<3',
192192
'tensorflow-metadata' + select_constraint(
193-
default='>=1.10.0,<1.11',
194-
nightly='>=1.11.0.dev',
193+
default='>=1.11.0,<1.12',
194+
nightly='>=1.12.0.dev',
195195
git_master='@git+https://github.com/tensorflow/metadata@master'),
196196
'tfx-bsl' + select_constraint(
197-
default='>=1.10.1,<1.11',
198-
nightly='>=1.11.0.dev',
197+
default='>=1.11.1,<1.12',
198+
nightly='>=1.12.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.11.0.dev'
18+
__version__ = '1.12.0.dev'

0 commit comments

Comments
 (0)