We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 052aec8 commit 4a18e91Copy full SHA for 4a18e91
5 files changed
README.md
@@ -172,7 +172,8 @@ other *untested* combinations may also work.
172
173
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
174
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
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.1
+[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (2.x) | 1.16.0 | n/a | 1.16.0
176
+[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
177
[1.15.1](https://github.com/tensorflow/data-validation/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.1
178
[1.15.0](https://github.com/tensorflow/data-validation/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.0
179
[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
RELEASE.md
@@ -12,6 +12,28 @@
12
13
## Deprecations
14
15
+# Version 1.16.0
16
+
17
+## Major Features and Improvements
18
19
+* N/A
20
21
+## Bug Fixes and Other Changes
22
23
+* Depends on `tensorflow>=2.16,<2.17`.
24
25
+## Known Issues
26
27
28
29
+## Breaking Changes
30
31
32
33
+## Deprecations
34
35
36
37
# Version 1.15.1
38
39
## Major Features and Improvements
g3doc/install.md
@@ -175,7 +175,8 @@ other *untested* combinations may also work.
-[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.1
+[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (1.x/2.x) | 1.16.0 | n/a | 1.16.0
180
181
182
setup.py
@@ -188,16 +188,16 @@ def select_constraint(default, nightly=None, git_master=None):
188
'pyfarmhash>=0.2.2,<0.4',
189
'six>=1.12,<2',
190
'tensorflow' + select_constraint(
191
- default='>=2.15,<2.16',
192
- nightly='>=2.16.0.dev',
+ default='>=2.16,<2.17',
+ nightly='>=2.17.0.dev',
193
git_master='@git+https://github.com/tensorflow/tensorflow@master'),
194
'tensorflow-metadata' + select_constraint(
195
- default='>=1.15.0,<1.16',
196
- nightly='>=1.16.0.dev',
+ default='>=1.16.0,<1.17',
+ nightly='>=1.17.0.dev',
197
git_master='@git+https://github.com/tensorflow/metadata@master'),
198
'tfx-bsl' + select_constraint(
199
- default='>=1.15.1,<1.16',
200
201
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
202
],
203
extras_require={
tensorflow_data_validation/version.py
@@ -15,4 +15,4 @@
"""Contains the version string of TFDV."""
# Note that setup.py uses this version.
-__version__ = '1.16.0.dev'
+__version__ = '1.17.0.dev'
0 commit comments