Skip to content

Commit

Permalink
TFX-BSL 0.28.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 358921467
  • Loading branch information
tfx-copybara committed Feb 22, 2021
1 parent 5e14d82 commit 1ad8bd5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ combinations may also work.

tfx-bsl | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-serving-api |
------------------------------------------------------------------------------- | -----------------| ---------|-------------------|---------------------|------------------------|
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.27.0 | 2.0.0 | nightly (1.x/2.x) | 0.27.0 | 2.4.0 |
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.27.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 2.4.0 |
[0.28.0](https://github.com/tensorflow/tfx-bsl/blob/v0.28.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 2.4.0 |
[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 |
[0.27.0](https://github.com/tensorflow/tfx-bsl/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 2.4.0 |
[0.26.1](https://github.com/tensorflow/tfx-bsl/blob/v0.26.1/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.27.0 | 2.3.0 |
Expand Down
17 changes: 16 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

## Major Features and Improvements

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 0.28.0

## Major Features and Improvements

* RunInference can now be applied on serialized tf.train.{Example,
SequenceExample} for all methods as well as any other kind of serialized
structure for the Predict method.
Expand All @@ -15,11 +25,16 @@
## Bug Fixes and Other Changes

* Depends on `numpy>=1.16,<1.20`.
* Depends on `tensorflow-metadata>=0.28,<0.29`.

## Breaking changes
## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 0.27.1

* This is a bug fix only version, which modified the dependencies.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ def select_constraint(default, nightly=None, git_master=None):
'pyarrow>=1,<3',
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3',
'tensorflow-metadata' + select_constraint(
default='>=0.27,<0.28',
nightly='>=0.28.0.dev',
default='>=0.28,<0.29',
nightly='>=0.29.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3',
],
Expand Down
2 changes: 1 addition & 1 deletion tfx_bsl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of tfx_bsl."""

# Note that setup.py uses this version.
__version__ = '0.28.0.dev'
__version__ = '0.29.0.dev'

0 comments on commit 1ad8bd5

Please sign in to comment.