Skip to content

Commit

Permalink
TFXBSL 1.14.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 556042024
  • Loading branch information
tfx-copybara committed Aug 11, 2023
1 parent d5d110d commit 7140cc5
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 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.40.0 | 6.0.0 | nightly (2.x) | 1.13.1 | 2.9.0 |
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | 2.13.0 |
[1.14.0](https://github.com/tensorflow/tfx-bsl/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 2.13.0 |
[1.13.0](https://github.com/tensorflow/tfx-bsl/blob/v1.13.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | 2.9.0 |
[1.12.0](https://github.com/tensorflow/tfx-bsl/blob/v1.12.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | 2.9.0 |
[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 |
Expand Down
16 changes: 16 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 1.14.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Bumped the Ubuntu version on which TFX-BSL is tested to 20.04 (previously
16.04).
* Adds `order_on_tie` parameter to `MisraGriesSketch` to specify the order
Expand All @@ -19,8 +31,12 @@

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.13.0

## Major Features and Improvements
Expand Down
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ http_archive(
)


TFMD_COMMIT = "47170227144d2e90299f7a6f67c2939f1e10d0c8"
TFMD_COMMIT = "7073f7452d6cecbb5279781451f7c3144c924367" # 1.14.0
http_archive(
name = "com_github_tensorflow_metadata",
urls = ["https://github.com/tensorflow/metadata/archive/%s.zip" % TFMD_COMMIT],
strip_prefix = "metadata-%s" % TFMD_COMMIT,
sha256 = "31f4f72343e0f040904ac4c8fea5e15c80d24c912272c2ba92a4de4dba42b526",
sha256 = "e888cc58f7c8e697119f7796dd7061803abdbd4615b8fae63c485f0ebaea05fc",
)

# TODO(b/177694034): Follow the new format for tensorflow import after TF 2.5.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ def select_constraint(default, nightly=None, git_master=None):
'pyarrow>=10,<11',
'tensorflow>=2.13,<3',
'tensorflow-metadata' + select_constraint(
default='>=1.13.1,<1.14.0',
nightly='>=1.14.0.dev',
default='>=1.14.0,<1.15.0',
nightly='>=1.15.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tensorflow-serving-api>=2.13.0,<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__ = '1.14.0.dev'
__version__ = '1.15.0.dev'

0 comments on commit 7140cc5

Please sign in to comment.