[go: nahoru, domu]

Skip to content

Commit

Permalink
Fix release note (#1662)
Browse files Browse the repository at this point in the history
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
  • Loading branch information
yongtang committed Apr 18, 2022
1 parent 043cbc6 commit 9a885fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
6 changes: 4 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Release 0.25.0

## Major Features and Bug Fixes
* <TODO>
* 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.
Expand Down
1 change: 1 addition & 0 deletions tools/release/note_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
"@", " "
Expand Down

0 comments on commit 9a885fb

Please sign in to comment.