From 21c349b3265b390eea3a071ecaf6f47bbbf6f180 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Sat, 17 Dec 2022 17:17:09 -0800 Subject: [PATCH] Bump version to 0.29.0 (#1746) * Bump version to 0.29.0 Signed-off-by: Yong Tang * Fix reviewdog Signed-off-by: Yong Tang Signed-off-by: Yong Tang --- .github/workflows/reviewdog.yml | 8 ++++---- README.md | 1 + RELEASE.md | 14 ++++++++++++++ tensorflow_io/python/ops/version_ops.py | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index bcd92c448..b772f5e78 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v2 - run: | - sudo python3 -m pip install -U numpy + sudo python3 -m pip install -U numpy pip wheel setuptools requests bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- bazel - uses: reviewdog/action-suggester@v1 black: @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v2 - run: | - sudo python3 -m pip install -U numpy + sudo python3 -m pip install -U numpy pip wheel setuptools requests bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- black - uses: reviewdog/action-suggester@v1 clang: @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v2 - run: | - sudo python3 -m pip install -U numpy + sudo python3 -m pip install -U numpy pip wheel setuptools requests bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- clang - uses: reviewdog/action-suggester@v1 pyupgrade: @@ -39,6 +39,6 @@ jobs: steps: - uses: actions/checkout@v2 - run: | - sudo python3 -m pip install -U numpy + sudo python3 -m pip install -U numpy pip wheel setuptools requests bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- pyupgrade - uses: reviewdog/action-suggester@v1 diff --git a/README.md b/README.md index efffe727a..46b25dd88 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.29.0 | 2.11.x | Dec 18, 2022 | | 0.28.0 | 2.11.x | Nov 21, 2022 | | 0.27.0 | 2.10.x | Sep 08, 2022 | | 0.26.0 | 2.9.x | May 17, 2022 | diff --git a/RELEASE.md b/RELEASE.md index 5854b3d16..0271df09d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,17 @@ +# Release 0.29.0 + +## Major Features and Bug Fixes +* Fix issue in python 3.11 support + +## Thanks to our Contributors + +This release contains contributions from many people: + +Aaron Keesing + +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.28.0 ## Major Features and Bug Fixes diff --git a/tensorflow_io/python/ops/version_ops.py b/tensorflow_io/python/ops/version_ops.py index 0fbfbaffe..41085a5ff 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.28.0" +version = "0.29.0" require = "tensorflow>=2.11.0,<2.12.0"