diff --git a/README.md b/README.md index f604e41..75ed0f9 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,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.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.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 f0a555d..66129b2 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Version 1.15.0 +# Version 1.15.1 ## Major Features and Improvements @@ -10,7 +10,7 @@ * Bump the macOS version on which TFX-BSL is tested to Ventura (previously was Monterey). * Bumps the pybind11 version to 2.11.1 -* Depends on `tensorflow~=2.15` +* Depends on `tensorflow 2.15` * Depends on `apache-beam[gcp]>=2.53.0,<3` for Python 3.11 and on `apache-beam[gcp]>=2.47.0,<3` for 3.9 and 3.10. * Depends on `protobuf>=4.25.2,<5` for Python 3.11 and on `protobuf>3.20.3,<5` diff --git a/setup.py b/setup.py index 04abf34..853faad 100644 --- a/setup.py +++ b/setup.py @@ -175,7 +175,7 @@ def select_constraint(default, nightly=None, git_master=None): 'protobuf>=4.25.2,<5;python_version>="3.11"', 'protobuf>=3.20.3,<5;python_version<"3.11"', 'pyarrow>=10,<11', - 'tensorflow~=2.15', + 'tensorflow>=2.15,<2.16', 'tensorflow-metadata' + select_constraint( default='>=1.15.0,<1.16.0', nightly='>=1.16.0.dev', diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index 37c3c82..f5f5428 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.15.0' +__version__ = '1.15.1'