File tree Expand file tree Collapse file tree 5 files changed +27
-7
lines changed Expand file tree Collapse file tree 5 files changed +27
-7
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ other *untested* combinations may also work.
94
94
95
95
tensorflow-transform | apache-beam[ gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
96
96
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
97
- [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.41.0 | 6.0.0 | nightly (2.x) | 1.11.0 | 1.11.0 |
97
+ [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.41.0 | 6.0.0 | nightly (2.x) | 1.12.0 | 1.12.0 |
98
+ [ 1.12.0] ( https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md ) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 |
98
99
[ 1.11.0] ( https://github.com/tensorflow/transform/blob/v1.11.0/RELEASE.md ) | 2.41.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.0 |
99
100
[ 1.10.0] ( https://github.com/tensorflow/transform/blob/v1.10.0/RELEASE.md ) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.0 |
100
101
[ 1.9.0] ( https://github.com/tensorflow/transform/blob/v1.9.0/RELEASE.md ) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0 |
Original file line number Diff line number Diff line change 6
6
7
7
## Bug Fixes and Other Changes
8
8
9
+ ## Breaking Changes
10
+
11
+ ## Deprecations
12
+
13
+ # Version 1.12.0
14
+
15
+ ## Major Features and Improvements
16
+
17
+ * N/A
18
+
19
+ ## Bug Fixes and Other Changes
20
+
9
21
* Depends on ` tensorflow>=2.11,<2.12 `
22
+ * Depends on ` tensorflow-metadata>=1.12.0,<1.13.0 ` .
23
+ * Depends on ` tfx-bsl>=1.12.0,<1.13.0 ` .
10
24
11
25
## Breaking Changes
12
26
27
+ * N/A
28
+
13
29
## Deprecations
14
30
31
+ * N/A
32
+
15
33
# Version 1.11.0
16
34
17
35
## Major Features and Improvements
Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ other *untested* combinations may also work.
93
93
94
94
tensorflow-transform | apache-beam[ gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
95
95
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
96
- [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.41.0 | 6.0.0 | nightly (2.x) | 1.11.0 | 1.11.0
96
+ [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.41.0 | 6.0.0 | nightly (2.x) | 1.12.0 | 1.12.0
97
+ [ 1.12.0] ( https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md ) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0
97
98
[ 1.11.0] ( https://github.com/tensorflow/transform/blob/v1.11.0/RELEASE.md ) | 2.41.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.0
98
99
[ 1.10.0] ( https://github.com/tensorflow/transform/blob/v1.10.0/RELEASE.md ) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.0
99
100
[ 1.9.0] ( https://github.com/tensorflow/transform/blob/v1.9.0/RELEASE.md ) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0
Original file line number Diff line number Diff line change @@ -52,12 +52,12 @@ def _make_required_install_packages():
52
52
'tensorflow' + select_constraint ('>=2.11.0,<2.12' ),
53
53
# pylint: enable=line-too-long
54
54
'tensorflow-metadata' + select_constraint (
55
- default = '>=1.11 .0,<1.12 .0' ,
56
- nightly = '>=1.12 .0.dev' ,
55
+ default = '>=1.12 .0,<1.13 .0' ,
56
+ nightly = '>=1.13 .0.dev' ,
57
57
git_master = '@git+https://github.com/tensorflow/metadata@master' ),
58
58
'tfx-bsl' + select_constraint (
59
- default = '>=1.11 .0,<1.12 .0' ,
60
- nightly = '>=1.12 .0.dev' ,
59
+ default = '>=1.12 .0,<1.13 .0' ,
60
+ nightly = '>=1.13 .0.dev' ,
61
61
git_master = '@git+https://github.com/tensorflow/tfx-bsl@master' ),
62
62
]
63
63
Original file line number Diff line number Diff line change 14
14
"""Contains the version string of TF.Transform."""
15
15
16
16
# Note that setup.py uses this version.
17
- __version__ = '1.12 .0.dev'
17
+ __version__ = '1.13 .0.dev'
You can’t perform that action at this time.
0 commit comments