From af9988f03a885a4b7587e765f9e1bf68bec7d7ff Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 8 Jul 2020 08:31:07 -0700 Subject: [PATCH] Release of v0.14.0 (#1029) Signed-off-by: Yong Tang --- README.md | 1 + RELEASE.md | 21 ++++++++++++++++++++ tensorflow_io/core/python/ops/version_ops.py | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d388dc8ac..05f332b8c 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ version of TensorFlow I/O according to the table below: | TensorFlow I/O Version | TensorFlow Compatibility | Release Date | | --- | --- | --- | +| 0.14.0 | 2.2.x | Jul 08, 2020 | | 0.13.0 | 2.2.x | May 10, 2020 | | 0.12.0 | 2.1.x | Feb 28, 2020 | | 0.11.0 | 2.1.x | Jan 10, 2020 | diff --git a/RELEASE.md b/RELEASE.md index 7bbb39478..5e3da6bc1 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,24 @@ +# Release 0.14.0 + +## Major Features +* Add `decode_avif` for AVIF image format support. +* Add `decode_jp3` for JPEG2000 image format support. +* Add `JPEG compression support for decoding TIFF images. +* Add audio spectrogram transform support. +* Add operations to trim/split/remix audio signals. +* Add Fade in/out audio augmentation support. +* Add frequency/time masking audio augmentation support. +* Add repeated field support in BigQuery API. + +## Thanks to our Contributors + +This release contains contributions from many people: + +Aleksey Vlasenko, Cheng Ren, Dio Gado, Ruhua Jiang, 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.13.0 ## Major Features diff --git a/tensorflow_io/core/python/ops/version_ops.py b/tensorflow_io/core/python/ops/version_ops.py index b7777e291..6b54f68aa 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.2.0,<2.3.0" -version = "0.13.0" +version = "0.14.0"