Skip to content

Commit 81f62a6

Browse files
committed
TFX_BSL 0.30.0 Release
PiperOrigin-RevId: 369671385
1 parent fb6cb6f commit 81f62a6

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

README.md

+2-1
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.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 2.4.0 |
151+
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.30.0 | 2.4.0 |
152+
[0.30.0](https://github.com/tensorflow/tfx-bsl/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 2.4.0 |
152153
[0.29.0](https://github.com/tensorflow/tfx-bsl/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | 2.4.0 |
153154
[0.28.0](https://github.com/tensorflow/tfx-bsl/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 2.4.0 |
154155
[0.27.1](https://github.com/tensorflow/tfx-bsl/blob/v0.27.1/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 2.4.0 |

RELEASE.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,33 @@
44

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.30.0
14+
15+
## Major Features and Improvements
16+
717
* Misra-Gries sketch: added support for replacing large string blobs with
818
a configurable placeholder, and replacing invalid utf-8 sequences with
919
a configurable placeholder.
1020

1121
## Bug Fixes and Other Changes
1222

23+
* Depends on `tensorflow-metadata>=0.30,<0.31`.
24+
1325
## Breaking Changes
1426

1527
* Removed `tfx_bsl.beam.shared`. It is now available in Apache Beam.
1628
Use `apache_beam.utils.shared` instead.
1729

1830
## Deprecations
1931

32+
* N/A
33+
2034
# Version 0.29.0
2135

2236
## Major Features and Improvements

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ def select_constraint(default, nightly=None, git_master=None):
170170
'pyarrow>=1,<3',
171171
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3',
172172
'tensorflow-metadata' + select_constraint(
173-
default='>=0.29,<0.30',
174-
nightly='>=0.30.0.dev',
173+
default='>=0.30,<0.31',
174+
nightly='>=0.31.0.dev',
175175
git_master='@git+https://github.com/tensorflow/metadata@master'),
176176
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3',
177177
],

tfx_bsl/version.py

+1-1
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__ = '0.30.0.dev'
17+
__version__ = '0.31.0.dev'

0 commit comments

Comments
 (0)