Skip to content

Commit c1f14ed

Browse files
authored
Update README.md and RELEASE.md, to prepare 0.24.0 release. (#1621)
* Bump to TF 2.8.0 Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update README.md and RELEASE.md, to prepare 0.24.0 release. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Pin pip==21.3.1 Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
1 parent 22c26cc commit c1f14ed

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ jobs:
182182
python-version: ${{ matrix.python }}
183183
- run: |
184184
set -x -e
185+
python -m pip install pip==21.3.1
185186
python -m pip install -U wheel setuptools
186187
python --version
187188
- name: Setup ${{ matrix.python }} macOS

README.md

Lines changed: 1 addition & 0 deletions
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.24.0 | 2.8.x | Feb 04, 2022 |
129130
| 0.23.1 | 2.7.x | Dec 15, 2021 |
130131
| 0.23.0 | 2.7.x | Dec 14, 2021 |
131132
| 0.22.0 | 2.7.x | Nov 10, 2021 |

RELEASE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Release 0.24.0
2+
3+
## Major Features and Bug Fixes
4+
* Added Bigtable dataset support.
5+
* Added tfio.audio.inverse_spectrogram.
6+
* Fixed decode_json empty lists segmentation issue.
7+
* Fix parquet unknown shape issue in graph execution.
8+
* Removed IgniteDataset.
9+
10+
## Thanks to our Contributors
11+
12+
This release contains contributions from many people:
13+
14+
Aleksey Vlasenko, Andrew Goodbody, Douglas Coimbra de Andrade, Marek Dopiera,
15+
Pierre Dulac, Vignesh Kothapalli, Yong Tang
16+
17+
We are also grateful to all who filed issues or helped resolve them, asked and
18+
answered questions, and were part of inspiring discussions.
19+
120
# Release 0.23.1
221

322
## Major Features and Bug Fixes

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ pip_install()
114114

115115
http_archive(
116116
name = "org_tensorflow",
117-
sha256 = "b82f7659754c93ddcabe24390368a6ffd84510e01136be1290e16760e3668176",
118-
strip_prefix = "tensorflow-2.8.0-rc1",
117+
sha256 = "66b953ae7fba61fd78969a2e24e350b26ec116cf2e6a7eb93d02c63939c6f9f7",
118+
strip_prefix = "tensorflow-2.8.0",
119119
urls = [
120-
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.8.0-rc1.tar.gz",
120+
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.8.0.tar.gz",
121121
],
122122
)
123123

tensorflow_io/python/ops/version_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""version_ops"""
1616

1717
version = "0.24.0"
18-
require = "tensorflow>=2.8.0rc1,<2.9.0"
18+
require = "tensorflow>=2.8.0,<2.9.0"

0 commit comments

Comments
 (0)