Skip to content

Commit 705337e

Browse files
committed
TFXBSL 1.11.0 Release
PiperOrigin-RevId: 488411256
1 parent 71faa4c commit 705337e

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ combinations may also work.
148148

149149
tfx-bsl | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-serving-api |
150150
------------------------------------------------------------------------------- | -----------------| ---------|-------------------|---------------------|------------------------|
151-
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | 2.9.0 |
151+
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.11.0 | 2.9.0 |
152+
[1.11.0](https://github.com/tensorflow/tfx-bsl/blob/v1.11.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | 2.9.0 |
152153
[1.10.0](https://github.com/tensorflow/tfx-bsl/blob/v1.10.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | 2.9.0 |
153154
[1.9.0](https://github.com/tensorflow/tfx-bsl/blob/v1.9.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.9 | 1.9.0 | 2.9.0 |
154155
[1.8.0](https://github.com/tensorflow/tfx-bsl/blob/v1.8.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.8 | 1.8.0 | 2.8.0 |

RELEASE.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
# Current Version (not yet released; still in development)
44

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

1015
## Major Features and Improvements
1116

@@ -15,6 +20,11 @@
1520
* `TFSequenceExampleRecord` now supports schemas with features not covered or
1621
partially covered by `TensorRepresentation`s.
1722

23+
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
24+
will be removed in the next version. Please check the
25+
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
26+
to TF2.
27+
1828
## Bug Fixes and Other Changes
1929

2030
* Depends on `tensorflow>=1.15.5,<2` or `tensorflow>=2.10,<3`
@@ -25,8 +35,12 @@
2535

2636
## Breaking Changes
2737

38+
* N/A
39+
2840
## Deprecations
2941

42+
* N/A
43+
3044
# Version 1.10.0
3145

3246
# Major Features and Improvements

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ def select_constraint(default, nightly=None, git_master=None):
176176
'pyarrow>=6,<7',
177177
'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',
178178
'tensorflow-metadata' + select_constraint(
179-
default='>=1.10.0,<1.11.0',
180-
nightly='>=1.11.0.dev',
179+
default='>=1.11.0,<1.12.0',
180+
nightly='>=1.12.0.dev',
181181
git_master='@git+https://github.com/tensorflow/metadata@master'),
182182
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
183183
],

tfx_bsl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of tfx_bsl."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '1.11.0.dev'
17+
__version__ = '1.12.0.dev'

0 commit comments

Comments
 (0)