From 7ec1cf80b15cb2a763ab1a4737b66aefb655a530 Mon Sep 17 00:00:00 2001 From: Dhruvesh Talati Date: Thu, 28 Jan 2021 13:50:34 -0800 Subject: [PATCH] Fairness Indicators and Tensorboard Plugin 0.27.0 Release PiperOrigin-RevId: 354386287 --- README.md | 3 ++- RELEASE.md | 22 +++++++++++++++++-- fairness_indicators/version.py | 2 +- setup.py | 8 +++---- tensorboard_plugin/README.md | 3 ++- tensorboard_plugin/setup.py | 4 ++-- .../RELEASE.md | 19 +++++++++++++++- .../version.py | 2 +- 8 files changed, 50 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1e9c7000..7b3e35ab 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,8 @@ other *untested* combinations may also work. |fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis | |-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------| -|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.26.0 | 0.26.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 0.27.0 | 0.27.0 | +|[v0.27.0](https://github.com/tensorflow/fairness-indicators/blob/v0.27.0/RELEASE.md) | 1.15.2 / 2.4 | 0.27.0 | 0.27.0 | |[v0.26.0](https://github.com/tensorflow/fairness-indicators/blob/v0.26.0/RELEASE.md) | 1.15.2 / 2.3 | 0.26.0 | 0.26.0 | |[v0.25.0](https://github.com/tensorflow/fairness-indicators/blob/v0.25.0/RELEASE.md) | 1.15.2 / 2.3 | 0.25.0 | 0.25.0 | |[v0.24.0](https://github.com/tensorflow/fairness-indicators/blob/v0.24.0/RELEASE.md) | 1.15.2 / 2.3 | 0.24.0 | 0.24.0 | diff --git a/RELEASE.md b/RELEASE.md index f6874b25..25dd3fb7 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,21 +1,39 @@ -# Current Version(Still in Development) +# Current Version (Still in Development) ## Major Features and Improvements ## Bug fixes and other changes +## Breaking changes + +## Deprecations + +# Version 0.27.0 + +## Major Features and Improvements + +* N/A + +## Bug fixes and other changes + * Added test cases for DLVM testing. * Move the util files to a seperate folder. -* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3`. * Add `tensorflow-hub` as a dependency because it's used inside the example_model.py. +* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3`. +* Depends on `tensorflow-data-validation>=0.27,<0.28`. +* Depends on `tensorflow-model-analysis>=0.27,<0.28`. ## Breaking changes +* N/A + ## Deprecations +* N/A + # Version 0.26.0 ## Major Features and Improvements diff --git a/fairness_indicators/version.py b/fairness_indicators/version.py index 5a48c0aa..6f1072d7 100644 --- a/fairness_indicators/version.py +++ b/fairness_indicators/version.py @@ -14,4 +14,4 @@ """Contains the version string of Fairness Indicators.""" # Note that setup.py uses this version. -__version__ = '0.27.0.dev' +__version__ = '0.28.0.dev' diff --git a/setup.py b/setup.py index 0162bf28..7bc416e3 100644 --- a/setup.py +++ b/setup.py @@ -36,12 +36,12 @@ def select_constraint(default, nightly=None, git_master=None): 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3', 'tensorflow-hub>=0.8.0,<1.0.0', 'tensorflow-data-validation' + select_constraint( - default='>=0.26,<0.27', - nightly='>=0.27.0.dev', + default='>=0.27,<0.28', + nightly='>=0.28.0.dev', git_master='@git+https://github.com/tensorflow/data-validation@master'), 'tensorflow-model-analysis' + select_constraint( - default='>=0.26,<0.27', - nightly='>=0.27.0.dev', + default='>=0.27,<0.28', + nightly='>=0.28.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), 'witwidget>=1.4.4,<2', ] diff --git a/tensorboard_plugin/README.md b/tensorboard_plugin/README.md index f9277500..7d0325cd 100644 --- a/tensorboard_plugin/README.md +++ b/tensorboard_plugin/README.md @@ -101,7 +101,8 @@ other *untested* combinations may also work. |tensorboard-pluginn | tensorflow | tensorflow-model-analysis | |-------------------------------------------------------------------------------------------------------------|---------------|---------------------------| -|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.26.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.27.0 | +|[v0.27.0](https://github.com/tensorflow/fairness-indicators/blob/v0.27.0/tensorboard_plugin/README.md) | 2.4.0 | 0.27.0 | |[v0.26.0](https://github.com/tensorflow/fairness-indicators/blob/v0.26.0/tensorboard_plugin/README.md) | 2.3.0 | 0.26.0 | |[v0.25.0](https://github.com/tensorflow/fairness-indicators/blob/v0.25.0/tensorboard_plugin/README.md) | 2.3.0 | 0.25.0 | |[v0.24.0](https://github.com/tensorflow/fairness-indicators/blob/v0.24.0/tensorboard_plugin/README.md) | 2.3.0 | 0.24.0 | diff --git a/tensorboard_plugin/setup.py b/tensorboard_plugin/setup.py index 1751047f..31e58ebd 100644 --- a/tensorboard_plugin/setup.py +++ b/tensorboard_plugin/setup.py @@ -41,8 +41,8 @@ def select_constraint(default, nightly=None, git_master=None): 'tensorboard>=2.4.0,<3', 'tensorflow>=2.4.0,<3', 'tensorflow-model-analysis' + select_constraint( - default='>=0.26,<0.27', - nightly='>=0.27.0.dev', + default='>=0.27,<0.28', + nightly='>=0.28.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), ] diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md index a00af1c8..993d9036 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md @@ -1,18 +1,35 @@ -# Current Version(Still in Development) +# Current Version (Still in Development) ## Major Features and Improvements ## Bug fixes and other changes +## Breaking changes + +## Deprecations + +# Version 0.27.0 + +## Major Features and Improvements + +* N/A + +## Bug fixes and other changes + * Depends on `tensorboard>=2.4.0,<3`. * Depends on `tensorflow>=2.4.0,<3`. +* Depends on `tensorflow-model-analysis>=0.27,<0.28`. ## Breaking changes +* N/A + ## Deprecations +* N/A + # Version 0.26.0 ## Major Features and Improvements diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py index 106141b8..c0d20b1f 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py @@ -15,4 +15,4 @@ """Contains the version string of Fairness Indicators Tensorboard Plugin.""" # Note that setup.py uses this version. -__version__ = '0.27.0.dev' +__version__ = '0.28.0.dev'