Skip to content

Commit 06788ec

Browse files
venkat2469tfx-copybara
authored andcommitted
TFMA 0.42.0 Release
PiperOrigin-RevId: 489051164
1 parent 8a2800c commit 06788ec

File tree

6 files changed

+26
-9
lines changed

6 files changed

+26
-9
lines changed

README.md

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

210210
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
211211
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
212-
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | 1.10.1 |
212+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.11.0 | 1.11.1 |
213+
|[0.42.0](https://github.com/tensorflow/model-analysis/blob/v0.42.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.1 |
213214
|[0.41.0](https://github.com/tensorflow/model-analysis/blob/v0.41.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.1 |
214215
|[0.40.0](https://github.com/tensorflow/model-analysis/blob/v0.40.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0 |
215216
|[0.39.0](https://github.com/tensorflow/model-analysis/blob/v0.39.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.8 | 1.8.0 | 1.8.0 |

RELEASE.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug fixes and other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.42.0
14+
15+
## Major Features and Improvements
16+
517
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
618
will be removed in the next version. Please check the
719
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
@@ -11,7 +23,6 @@
1123
* Add CounterfactualPredictionsExtractor for computing predictions on modified
1224
inputs.
1325

14-
## Major Features and Improvements
1526

1627
## Bug fixes and other Changes
1728

@@ -38,8 +49,12 @@
3849

3950
## Breaking Changes
4051

52+
* N/A
53+
4154
## Deprecations
4255

56+
* N/A
57+
4358
# Version 0.41.1
4459

4560
## 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.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | 1.10.1
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (1.x/2.x) | 1.11.0 | 1.11.0
156+
[0.42.1](https://github.com/tensorflow/model-analysis/blob/v0.42.1/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | 1.11.0
156157
[0.41.1](https://github.com/tensorflow/model-analysis/blob/v0.41.1/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | 1.10.1
157158
[0.41.0](https://github.com/tensorflow/model-analysis/blob/v0.41.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | 1.10.1
158159
[0.40.0](https://github.com/tensorflow/model-analysis/blob/v0.40.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.9 | 1.9.0 | 1.9.0

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -303,12 +303,12 @@ def select_constraint(default, nightly=None, git_master=None):
303303
'attrs>=19.3.0,<22',
304304
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3',
305305
'tensorflow-metadata' + select_constraint(
306-
default='>=1.10.0,<1.11.0',
307-
nightly='>=1.11.0.dev',
306+
default='>=1.11.0,<1.12.0',
307+
nightly='>=1.12.0.dev',
308308
git_master='@git+https://github.com/tensorflow/metadata@master'),
309309
'tfx-bsl' + select_constraint(
310-
default='>=1.10.1,<1.11.0',
311-
nightly='>=1.11.0.dev',
310+
default='>=1.11.0,<1.12.0',
311+
nightly='>=1.12.0.dev',
312312
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
313313
],
314314
'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.42.0.dev",
3+
"version": "0.43.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
@@ -15,4 +15,4 @@
1515

1616
# Version string for this release of TFMA.
1717
# Note that setup.py reads and uses this version.
18-
VERSION = '0.42.0.dev'
18+
VERSION = '0.43.0.dev'

0 commit comments

Comments
 (0)