Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Release 0.27.0

## Major Features and Bug Fixes
* Add arrow binary data type support
* Add string support for feather file

## Thanks to our Contributors

This release contains contributions from many people:

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.26.0

## Major Features and Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ pip_install()

http_archive(
name = "org_tensorflow",
sha256 = "7edd8b544cc65254735210e03364fe9828f36430e09e9322fba9b0a4b2912580",
strip_prefix = "tensorflow-2.10.0-rc2",
sha256 = "cb9b0a73d1748d1b71457631bd4bdc3675792d8d068150d93b73d24e33c8d236",
strip_prefix = "tensorflow-2.10.0-rc3",
urls = [
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.10.0-rc2.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.10.0-rc3.tar.gz",
],
)

Expand Down
2 changes: 1 addition & 1 deletion tensorflow_io/python/ops/version_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""version_ops"""

version = "0.27.0"
require = "tensorflow>=2.10.0rc2,<2.11.0"
require = "tensorflow>=2.10.0rc3,<2.11.0"