Skip to content

Commit 21c349b

Browse files
authored
Bump version to 0.29.0 (#1746)
* Bump version to 0.29.0 Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix reviewdog Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
1 parent 416bae5 commit 21c349b

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.github/workflows/reviewdog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- run: |
15-
sudo python3 -m pip install -U numpy
15+
sudo python3 -m pip install -U numpy pip wheel setuptools requests
1616
bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- bazel
1717
- uses: reviewdog/action-suggester@v1
1818
black:
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v2
2323
- run: |
24-
sudo python3 -m pip install -U numpy
24+
sudo python3 -m pip install -U numpy pip wheel setuptools requests
2525
bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- black
2626
- uses: reviewdog/action-suggester@v1
2727
clang:
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v2
3232
- run: |
33-
sudo python3 -m pip install -U numpy
33+
sudo python3 -m pip install -U numpy pip wheel setuptools requests
3434
bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- clang
3535
- uses: reviewdog/action-suggester@v1
3636
pyupgrade:
@@ -39,6 +39,6 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v2
4141
- run: |
42-
sudo python3 -m pip install -U numpy
42+
sudo python3 -m pip install -U numpy pip wheel setuptools requests
4343
bazel run -s --verbose_failures --experimental_repo_remote_exec //tools/lint:lint -- pyupgrade
4444
- uses: reviewdog/action-suggester@v1

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ of releases [here](https://github.com/tensorflow/io/releases).
126126

127127
| TensorFlow I/O Version | TensorFlow Compatibility | Release Date |
128128
| --- | --- | --- |
129+
| 0.29.0 | 2.11.x | Dec 18, 2022 |
129130
| 0.28.0 | 2.11.x | Nov 21, 2022 |
130131
| 0.27.0 | 2.10.x | Sep 08, 2022 |
131132
| 0.26.0 | 2.9.x | May 17, 2022 |

RELEASE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Release 0.29.0
2+
3+
## Major Features and Bug Fixes
4+
* Fix issue in python 3.11 support
5+
6+
## Thanks to our Contributors
7+
8+
This release contains contributions from many people:
9+
10+
Aaron Keesing
11+
12+
We are also grateful to all who filed issues or helped resolve them, asked and
13+
answered questions, and were part of inspiring discussions.
14+
115
# Release 0.28.0
216

317
## Major Features and Bug Fixes

tensorflow_io/python/ops/version_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# ==============================================================================
1515
"""version_ops"""
1616

17-
version = "0.28.0"
17+
version = "0.29.0"
1818
require = "tensorflow>=2.11.0,<2.12.0"

0 commit comments

Comments
 (0)