Skip to content

Commit

Permalink
TFX_BSL 1.15.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 627516290
  • Loading branch information
tfx-copybara committed Apr 23, 2024
1 parent 8e28bbf commit df4cc40
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,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.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | 2.13.0 |
[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 2.15.1 |
[1.15.0](https://github.com/tensorflow/tfx-bsl/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | 2.15.1
[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 |
Expand Down
14 changes: 14 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.15.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Bumped the mininum bazel version required to build `tfx_bsl` to 6.1.0.
* Bump the macOS version on which TFX-BSL is tested to Ventura (previously was
Monterey).
Expand All @@ -19,6 +31,8 @@

## Breaking Changes

* N/A

## Deprecations

* Deprecated python 3.8 support.
Expand Down
5 changes: 2 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,12 @@ http_archive(
strip_prefix = "abseil-cpp-%s" % COM_GOOGLE_ABSL_COMMIT
)


TFMD_COMMIT = "7073f7452d6cecbb5279781451f7c3144c924367" # 1.14.0
TFMD_COMMIT = "47aaaa7aa820fd8a865babcfddbdafe11ec92a25" # 1.15.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 = "e888cc58f7c8e697119f7796dd7061803abdbd4615b8fae63c485f0ebaea05fc",
sha256 = "5f24de8ae6bbe42af442c2b94bdc8d2a4d6b35f28c4978a257e8a0c18f33c165",
)

# 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 @@ -177,8 +177,8 @@ def select_constraint(default, nightly=None, git_master=None):
'pyarrow>=10,<11',
'tensorflow~=2.15',
'tensorflow-metadata' + select_constraint(
default='>=1.14.0,<1.15.0',
nightly='>=1.15.0.dev',
default='>=1.15.0,<1.16.0',
nightly='>=1.16.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.15.0.dev'
__version__ = '1.16.0.dev'

0 comments on commit df4cc40

Please sign in to comment.