Skip to content

Commit 9a885fb

Browse files
authored
Fix release note (#1662)
Signed-off-by: Yong Tang <[email protected]>
1 parent 043cbc6 commit 9a885fb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ of releases [here](https://github.com/tensorflow/io/releases).
126126

127127
| TensorFlow I/O Version | TensorFlow Compatibility | Release Date |
128128
| --- | --- | --- |
129+
| 0.25.0 | 2.8.x | Apr 19, 2022 |
129130
| 0.24.0 | 2.8.x | Feb 04, 2022 |
130131
| 0.23.1 | 2.7.x | Dec 15, 2021 |
131132
| 0.23.0 | 2.7.x | Dec 14, 2021 |

RELEASE.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Release 0.25.0
22

33
## Major Features and Bug Fixes
4-
* <TODO>
4+
* Decrease max bytes read from hdfs
5+
* Hide mongodb connection uri from being logged
6+
* Update log level from fetal to error when loading the libhdfs.so failed
57

68
## Thanks to our Contributors
79

810
This release contains contributions from many people:
911

10-
Stan Chen, Vignesh Kothapalli, Yong Tang, trabenx, yleeeee
12+
Junfan Zhang, Stan Chen, Vignesh Kothapalli, Yong Tang, trabenx, yleeeee
1113

1214
We are also grateful to all who filed issues or helped resolve them, asked and
1315
answered questions, and were part of inspiring discussions.

tools/release/note_update.py

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
).stdout.decode("utf-8")
5656

5757
authors = [e.split("\t")[1].strip() for e in logs.rstrip().split("\n")]
58+
authors = list(filter(lambda e: e != "github-actions[bot]", authors))
5859
# Replace " " with "@" to allow text wrap without break names, then replace back
5960
authors = textwrap.fill(", ".join([e.replace(" ", "@") for e in authors]), 80).replace(
6061
"@", " "

0 commit comments

Comments
 (0)