diff --git a/README.md b/README.md index 1685fded6..d85246505 100644 --- a/README.md +++ b/README.md @@ -126,6 +126,7 @@ of releases [here](https://github.com/tensorflow/io/releases). | TensorFlow I/O Version | TensorFlow Compatibility | Release Date | | --- | --- | --- | +| 0.25.0 | 2.8.x | Apr 19, 2022 | | 0.24.0 | 2.8.x | Feb 04, 2022 | | 0.23.1 | 2.7.x | Dec 15, 2021 | | 0.23.0 | 2.7.x | Dec 14, 2021 | diff --git a/RELEASE.md b/RELEASE.md index cbfba9aa4..4f824df9e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,13 +1,15 @@ # Release 0.25.0 ## Major Features and Bug Fixes -* +* Decrease max bytes read from hdfs +* Hide mongodb connection uri from being logged +* Update log level from fetal to error when loading the libhdfs.so failed ## Thanks to our Contributors This release contains contributions from many people: -Stan Chen, Vignesh Kothapalli, Yong Tang, trabenx, yleeeee +Junfan Zhang, Stan Chen, Vignesh Kothapalli, Yong Tang, trabenx, yleeeee We are also grateful to all who filed issues or helped resolve them, asked and answered questions, and were part of inspiring discussions. diff --git a/tools/release/note_update.py b/tools/release/note_update.py index ad64c1be7..324d5451b 100644 --- a/tools/release/note_update.py +++ b/tools/release/note_update.py @@ -55,6 +55,7 @@ ).stdout.decode("utf-8") authors = [e.split("\t")[1].strip() for e in logs.rstrip().split("\n")] +authors = list(filter(lambda e: e != "github-actions[bot]", authors)) # Replace " " with "@" to allow text wrap without break names, then replace back authors = textwrap.fill(", ".join([e.replace(" ", "@") for e in authors]), 80).replace( "@", " "