Skip to content

Commit

Permalink
Fairness Indicators and Tensorboard Plugin 0.27.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 354386287
  • Loading branch information
dhruvesh09 authored and ml-fairness-infra-github committed Jan 28, 2021
1 parent 9436c67 commit 7ec1cf8
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 13 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
22 changes: 20 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,39 @@
<!-- mdlint off(HEADERS_TOO_MANY_H1) -->

# 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
Expand Down
2 changes: 1 addition & 1 deletion fairness_indicators/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
Expand Down
3 changes: 2 additions & 1 deletion tensorboard_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions tensorboard_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,35 @@
<!-- mdlint off(HEADERS_TOO_MANY_H1) -->

# 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 7ec1cf8

Please sign in to comment.