diff --git a/README.md b/README.md index 19fc605c62..709e83d436 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,7 @@ combinations may also work. |tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl | |------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------| |[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 | +|[0.41.1](https://github.com/tensorflow/model-analysis/blob/v0.41.1/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.1 | |[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 | |[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 | |[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 | diff --git a/RELEASE.md b/RELEASE.md index 35a5a640b8..da8df38c4b 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,6 +10,24 @@ ## Deprecations +# Version 0.41.1 + +## Major Features and Improvements + +* N/A + +## Bug fixes and other Changes + +* Move the version to top of init.py since the original "from tensorflow_model_analysis.sdk import *" will not import private symbol. + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 0.41.0 ## Major Features and Improvements diff --git a/g3doc/install.md b/g3doc/install.md index 4203cce054..dd9be89b75 100644 --- a/g3doc/install.md +++ b/g3doc/install.md @@ -153,6 +153,7 @@ combinations may also work. tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl ------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | ------- [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 +[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 [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 [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 [0.39.0](https://github.com/tensorflow/model-analysis/blob/v0.39.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.8 | 1.8.0 | 1.8.0 diff --git a/tensorflow_model_analysis/notebook/jupyter/js/package.json b/tensorflow_model_analysis/notebook/jupyter/js/package.json index 5029a5ec8b..ae0bb5ac71 100644 --- a/tensorflow_model_analysis/notebook/jupyter/js/package.json +++ b/tensorflow_model_analysis/notebook/jupyter/js/package.json @@ -1,6 +1,6 @@ { "name": "tensorflow_model_analysis", - "version": "0.41.0", + "version": "0.41.1", "homepage": "https://github.com/tensorflow/model-analysis", "bugs": "https://github.com/tensorflow/model-analysis/issues", "license": "Apache-2.0", diff --git a/tensorflow_model_analysis/version.py b/tensorflow_model_analysis/version.py index 950d41fa75..ad3ec58985 100644 --- a/tensorflow_model_analysis/version.py +++ b/tensorflow_model_analysis/version.py @@ -15,4 +15,4 @@ # Version string for this release of TFMA. # Note that setup.py reads and uses this version. -VERSION = '0.41.0' +VERSION = '0.41.1'