Skip to content

Commit a8d5d70

Browse files
committed
TFDV 1.12.0 Release
PiperOrigin-RevId: 493992337
1 parent db37ed3 commit a8d5d70

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
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.11.0 | n/a | 1.11.0
174+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (2.x) | 1.12.0 | n/a | 1.12.0
175+
[1.12.0](https://github.com/tensorflow/data-validation/blob/v1.12.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | n/a | 1.12.0
175176
[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
176177
[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
177178
[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

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.12.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
923
* TFDV is now tested against macOS 12.5 (Monterey).
1024

1125
## Known Issues
1226

27+
* N/A
28+
1329
## Breaking Changes
1430

1531
* Depends on `tensorflow>=2.11,<3`
32+
* Depends on `tfx-bsl>=1.12.0,<1.13.0`.
33+
* Depends on `tensorflow-metadata>=1.12.0,<1.13.0`.
1634

1735
## Deprecations
1836

37+
* N/A
38+
1939
# Version 1.11.0
2040

2141
## 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.11.0 | n/a | 1.11.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.12.0 | n/a | 1.12.0
181+
[1.12.0](https://github.com/tensorflow/data-validation/blob/v1.12.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | n/a | 1.12.0
181182
[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
182183
[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
183184
[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

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>=2.11,<3',
192192
'tensorflow-metadata' + select_constraint(
193-
default='>=1.11.0,<1.12',
194-
nightly='>=1.12.0.dev',
193+
default='>=1.12.0,<1.13',
194+
nightly='>=1.13.0.dev',
195195
git_master='@git+https://github.com/tensorflow/metadata@master'),
196196
'tfx-bsl' + select_constraint(
197-
default='>=1.11.0,<1.12',
198-
nightly='>=1.12.0.dev',
197+
default='>=1.12.0,<1.13',
198+
nightly='>=1.13.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.12.0.dev'
18+
__version__ = '1.13.0.dev'

0 commit comments

Comments
 (0)