From 511bfb139b3513259f65d4ce83c7f8f820828172 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Tue, 20 Oct 2020 20:37:59 -0700 Subject: [PATCH 1/2] Bump the version to 0.16.0 Signed-off-by: Yong Tang --- RELEASE.md | 24 ++++++++++++++++++++ tensorflow_io/core/python/ops/version_ops.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index ead740966..34caff0f3 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,27 @@ +# Release 0.16.0 + +## Major Features +* Added support for stream timeout in KafkaGroupIODataset +* Renamed gstpufs to gsmemcachedfs +* Added experimental KakfaBatchIODataset for online learning +* Added gabor/laplacian/gaussian filter support +* Added basic Arrow string type support for BigQuery reader +* Added ElasticSearch dataset support +* Added Prewitt and Sobel filter support +* Added arbitary dimensional support for `decode_json` +* Added bool data type support for `decode_json` + +## Thanks to our Contributors + +This release contains contributions from many people: + +Aleksey Vlasenko, Daniel, Kota Yamaguchi, Mark Daoust, +Michael Kuchnik, Vignesh Kothapalli, Yong Tang, Yuan Tang, +emkornfield, marioecd + +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.15.0 ## Major Features diff --git a/tensorflow_io/core/python/ops/version_ops.py b/tensorflow_io/core/python/ops/version_ops.py index 2c7d43775..f2fc3720a 100644 --- a/tensorflow_io/core/python/ops/version_ops.py +++ b/tensorflow_io/core/python/ops/version_ops.py @@ -15,4 +15,4 @@ """version_ops""" package = "tensorflow>=2.3.0,<2.4.0" -version = "0.15.0" +version = "0.16.0" From 02214951ec790741f3a8e740b87916d608389160 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 21 Oct 2020 09:18:38 -0700 Subject: [PATCH 2/2] Add tutorial and docker images updates on RELEASE.md Signed-off-by: Yong Tang --- RELEASE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index 34caff0f3..5459b4c59 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,6 +10,9 @@ * Added Prewitt and Sobel filter support * Added arbitary dimensional support for `decode_json` * Added bool data type support for `decode_json` +* Added tutorials for Kafka and ElasticSearch usage with tf.keras. +* Containers of tensorflow-io releases are available + at `docker pull tfsigio/tfio`. ## Thanks to our Contributors