diff --git a/README.md b/README.md index 7038d1d..d2d86f3 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/RELEASE.md b/RELEASE.md index af27f3f..46edb73 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 @@ -19,8 +31,12 @@ ## Breaking Changes +* N/A + ## Deprecations +* N/A + # Version 1.13.0 ## Major Features and Improvements diff --git a/WORKSPACE b/WORKSPACE index f11f4a4..9b180d0 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -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. diff --git a/setup.py b/setup.py index c1db308..3dc57ca 100644 --- a/setup.py +++ b/setup.py @@ -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', ], diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index d409c9b..2d46274 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.14.0.dev' +__version__ = '1.15.0.dev'