From 8b052325f29809355b73e49c29966436ea19e22a Mon Sep 17 00:00:00 2001 From: tfx-bsl-team Date: Wed, 2 Oct 2024 16:17:57 -0700 Subject: [PATCH] TFX_BSL 1.16.0 Release PiperOrigin-RevId: 681630811 --- README.md | 7 ++++--- RELEASE.md | 18 ++++++++++++++++++ WORKSPACE | 8 ++++---- setup.py | 8 ++++---- tfx_bsl/version.py | 2 +- 5 files changed, 31 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 75ed0f9..f415ad7 100644 --- a/README.md +++ b/README.md @@ -146,9 +146,10 @@ 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.15.0 | 2.15.1 | -[1.15.1](https://github.com/tensorflow/tfx-bsl/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 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.15 | 1.15.0 | 2.15.1 +[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (2.x) | 1.16.0 | 2.16.1 | +[1.16.0](https://github.com/tensorflow/tfx-bsl/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | 2.16.1 +[1.15.1](https://github.com/tensorflow/tfx-bsl/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 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.15 | 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 | diff --git a/RELEASE.md b/RELEASE.md index 22beace..b94d8c6 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,6 +10,24 @@ ## Deprecations +# Version 1.16.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Depends on `tensorflow 2.16` + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 1.15.1 ## Major Features and Improvements diff --git a/WORKSPACE b/WORKSPACE index b9b3036..b6ffd6f 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -78,20 +78,20 @@ http_archive( strip_prefix = "abseil-cpp-%s" % COM_GOOGLE_ABSL_COMMIT ) -TFMD_COMMIT = "47aaaa7aa820fd8a865babcfddbdafe11ec92a25" # 1.15.0 +TFMD_COMMIT = "71c756354375e9f72f32b7eb3d7f13221c83fea6" # 1.16.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 = "5f24de8ae6bbe42af442c2b94bdc8d2a4d6b35f28c4978a257e8a0c18f33c165", + sha256 = "9826543733abbe1fdd0b1bf9a5155bc8279a44e738dfd6149e647592c4657594", ) # TODO(b/177694034): Follow the new format for tensorflow import after TF 2.5. #here -TENSORFLOW_COMMIT = "6887368d6d46223f460358323c4b76d61d1558a8" # 2.15.0 +TENSORFLOW_COMMIT = "810f233968cec850915324948bbbc338c97cf57f" # 2.16.2 http_archive( name = "org_tensorflow_no_deps", - sha256 = "bb25fa4574e42ea4d452979e1d2ba3b86b39569d6b8106a846a238b880d73652", + sha256 = "3b875c5121e752adc86578dc24747a220acfa2a7afa4026ff4172500b100854f", strip_prefix = "tensorflow-%s" % TENSORFLOW_COMMIT, urls = [ "https://mirror.bazel.build/github.com/tensorflow/tensorflow/archive/%s.tar.gz" % TENSORFLOW_COMMIT, diff --git a/setup.py b/setup.py index 4dd266f..705b4c6 100644 --- a/setup.py +++ b/setup.py @@ -176,12 +176,12 @@ def select_constraint(default, nightly=None, git_master=None): 'protobuf>=3.20.3,<5;python_version<"3.11"', 'pyarrow>=10,<11', 'tensorflow' + select_constraint( - default='>=2.15,<2.16', - nightly='>=2.16.0.dev', + default='>=2.16,<2.17', + nightly='>=2.17.0.dev', git_master='@git+https://github.com/tensorflow/tensorflow@master'), 'tensorflow-metadata' + select_constraint( - default='>=1.15.0,<1.16.0', - nightly='>=1.16.0.dev', + default='>=1.16.0,<1.17.0', + nightly='>=1.17.0.dev', git_master='@git+https://github.com/tensorflow/metadata@master'), 'tensorflow-serving-api' + select_constraint( default='>=2.13.0,<3', diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index 59a4f28..40a3230 100644 --- a/tfx_bsl/version.py +++ b/tfx_bsl/version.py @@ -14,4 +14,4 @@ """Contains the version string of tfx_bsl.""" # Note that setup.py uses this version. -__version__ = '1.16.0.dev' +__version__ = '1.17.0.dev'