diff --git a/README.md b/README.md index 99633e6c..43ad669d 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,8 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl | ------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------| -[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | 1.14.0 | +[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.0 | +[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | 1.15.0 | [1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 | [1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0 | [1.12.0](https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 | diff --git a/RELEASE.md b/RELEASE.md index d880c2a9..bbf9e869 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -4,6 +4,16 @@ ## Major Features and Improvements +## Bug Fixes and Other Changes + +## Breaking Changes + +## Deprecations + +# Version 1.15.0 + +## Major Features and Improvements + * Added support for sparse labels in AMI vocabulary computation. ## Bug Fixes and Other Changes diff --git a/docs/install.md b/docs/install.md index bae1356a..c81c3075 100644 --- a/docs/install.md +++ b/docs/install.md @@ -93,7 +93,8 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl ------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | ------- -[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | 1.14.0 +[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.0 +[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.14 | 1.15.0 | 1.15.0 [1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 [1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0 [1.12.0](https://github.com/tensorflow/transform/blob/v1.12.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 diff --git a/setup.py b/setup.py index f9916458..f7ed1a9f 100644 --- a/setup.py +++ b/setup.py @@ -52,12 +52,12 @@ def _make_required_install_packages(): 'pydot>=1.2,<2', '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'), 'tfx-bsl' + 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/tfx-bsl@master'), ] diff --git a/tensorflow_transform/version.py b/tensorflow_transform/version.py index 4decdc8b..5577d49a 100644 --- a/tensorflow_transform/version.py +++ b/tensorflow_transform/version.py @@ -14,4 +14,4 @@ """Contains the version string of TF.Transform.""" # Note that setup.py uses this version. -__version__ = '1.15.0.dev' +__version__ = '1.16.0.dev'