Skip to content

Commit 834a6ec

Browse files
committed
TFDV 1.15.0 Release
PiperOrigin-RevId: 627607016
1 parent eafa03d commit 834a6ec

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

README.md

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

173173
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
174174
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
175-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | n/a | 1.14.0
175+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | n/a | 1.15.0
176+
[1.15.0](https://github.com/tensorflow/data-validation/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | n/a | 1.15.0
176177
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
177178
[1.13.0](https://github.com/tensorflow/data-validation/blob/v1.13.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | n/a | 1.13.0
178179
[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

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.15.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
923
* When computing cross feature statistics, skip configured crosses that
1024
include features of unsupported types (i.e., are not univalent numeric
1125
features).
@@ -25,8 +39,12 @@
2539

2640
## Known Issues
2741

42+
* N/A
43+
2844
## Breaking Changes
2945

46+
* N/A
47+
3048
## Deprecations
3149

3250
* Deprecated python 3.8 support.

g3doc/install.md

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

176176
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
177177
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
178-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (1.x/2.x) | 1.14.0 | n/a | 1.14.0
178+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (1.x/2.x) | 1.15.0 | n/a | 1.15.0
179+
[1.15.0](https://github.com/tensorflow/data-validation/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | n/a | 1.15.0
179180
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
180181
[1.13.0](https://github.com/tensorflow/data-validation/blob/v1.13.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | n/a | 1.13.0
181182
[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

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~=2.15',
191191
'tensorflow-metadata' + select_constraint(
192-
default='>=1.14.0,<1.15',
193-
nightly='>=1.15.0.dev',
192+
default='>=1.15.0,<1.16',
193+
nightly='>=1.16.0.dev',
194194
git_master='@git+https://github.com/tensorflow/metadata@master'),
195195
'tfx-bsl' + select_constraint(
196-
default='>=1.14.0,<1.15',
197-
nightly='>=1.15.0.dev',
196+
default='>=1.15.0,<1.16',
197+
nightly='>=1.16.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.15.0.dev'
18+
__version__ = '1.16.0.dev'

0 commit comments

Comments
 (0)