From 2b9d9aeb92a033d203c2fe81d55d5ffc01111616 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 13 Dec 2021 09:22:17 -0800 Subject: [PATCH] Update to 0.23.0 with release note. This is part of effort for 1580. We will need to release 0.23.0 before TF 2.8 branch cut (12/16) so we will need to release in the next day or two. Signed-off-by: Yong Tang --- README.md | 1 + RELEASE.md | 20 ++++++++++++++++++++ tensorflow_io/python/ops/version_ops.py | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57c107091..7a632a598 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.23.0 | 2.7.x | Dec 14, 2021 | | 0.22.0 | 2.7.x | Nov 10, 2021 | | 0.21.0 | 2.6.x | Sep 12, 2021 | | 0.20.0 | 2.6.x | Aug 11, 2021 | diff --git a/RELEASE.md b/RELEASE.md index 892f7116f..d3ae2cb54 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,23 @@ +# Release 0.23.0 + +## Bug Fixes +* TensorFlow is not a hard requirement to tensorflow-io, to allow alternative + dependency packages like tensorflow-rocm. +* Migrate azure blob storage binding to azure storage sdk. +* Fix chunk size initialization in s3 storage. +* Enable python 3.10 support. +* IgniteDataset is deprecated and will be removed in future releases. + +## Thanks to our Contributors + +This release contains contributions from many people: + +Jan Bernlöhr, Johnu George, Luca Toscano, Lukas Geiger, Mark McDonald, +Vansh Sharma, Vignesh Kothapalli, Yong Tang + +We are also grateful to all who filed issues or helped resolve them, asked and +answered questions, and were part of inspiring discussions. + # Release 0.22.0 ## Bug Fixes diff --git a/tensorflow_io/python/ops/version_ops.py b/tensorflow_io/python/ops/version_ops.py index 336386814..b6a49936a 100644 --- a/tensorflow_io/python/ops/version_ops.py +++ b/tensorflow_io/python/ops/version_ops.py @@ -14,5 +14,5 @@ # ============================================================================== """version_ops""" -version = "0.22.0" +version = "0.23.0" require = "tensorflow>=2.7.0,<2.8.0"