Skip to content

Commit 5d941c8

Browse files
dhruvesh09tf-model-analysis-team
authored and
tf-model-analysis-team
committed
TFMA 0.30.0 Release
PiperOrigin-RevId: 369723186
1 parent 7414591 commit 5d941c8

File tree

6 files changed

+26
-8
lines changed

6 files changed

+26
-8
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ combinations may also work.
185185

186186
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
187187
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
188-
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 0.29.0 |
188+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.30.0 | 0.30.0 |
189+
|[0.30.0](https://github.com/tensorflow/model-analysis/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0 |
189190
|[0.29.0](https://github.com/tensorflow/model-analysis/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | 0.29.0 |
190191
|[0.28.0](https://github.com/tensorflow/model-analysis/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.0 |
191192
|[0.27.0](https://github.com/tensorflow/model-analysis/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0 |

RELEASE.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,29 @@
66

77
## Bug fixes and other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.30.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug fixes and other Changes
20+
921
* Fix bug that `FeaturesExtractor` incorrectly handles RecordBatches that
1022
have only the raw input column but no other feature columns.
1123

1224
## Breaking Changes
1325

26+
* N/A
27+
1428
## Deprecations
1529

30+
* N/A
31+
1632
# Version 0.29.0
1733

1834
## Major Features and Improvements

g3doc/install.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ combinations may also work.
152152

153153
tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
154154
------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | -------
155-
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 0.29.0
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.30.0 | 0.30.0
156+
[0.30.0](https://github.com/tensorflow/model-analysis/blob/v0.30.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0
156157
[0.29.0](https://github.com/tensorflow/model-analysis/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | 0.29.0
157158
[0.28.0](https://github.com/tensorflow/model-analysis/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.0
158159
[0.27.0](https://github.com/tensorflow/model-analysis/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,12 @@ def select_constraint(default, nightly=None, git_master=None):
302302
'six>=1.12,<2',
303303
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*!=2.3.*,<3',
304304
'tensorflow-metadata' + select_constraint(
305-
default='>=0.29,<0.30',
306-
nightly='>=0.30.0.dev',
305+
default='>=0.30,<0.31',
306+
nightly='>=0.31.0.dev',
307307
git_master='@git+https://github.com/tensorflow/metadata@master'),
308308
'tfx-bsl' + select_constraint(
309-
default='>=0.29,<0.30',
310-
nightly='>=0.30.0.dev',
309+
default='>=0.30,<0.31',
310+
nightly='>=0.31.0.dev',
311311
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
312312
],
313313
'extras_require': {

tensorflow_model_analysis/notebook/jupyter/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tensorflow_model_analysis",
3-
"version": "0.30.0.dev",
3+
"version": "0.31.0.dev",
44
"homepage": "https://github.com/tensorflow/model-analysis",
55
"bugs": "https://github.com/tensorflow/model-analysis/issues",
66
"license": "Apache-2.0",

tensorflow_model_analysis/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
# Version string for this release of TFMA.
1818
# Note that setup.py reads and uses this version.
19-
VERSION = '0.30.0.dev'
19+
VERSION = '0.31.0.dev'

0 commit comments

Comments
 (0)