Skip to content

Commit 1170936

Browse files
committed
Struct2Tensor 0.26.0 Release
PiperOrigin-RevId: 346861591
1 parent 8c183af commit 1170936

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

RELEASE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking changes
10+
11+
## Deprecations
12+
13+
## Release 0.26.0
14+
15+
## Major Features and Improvements
16+
717
* Created a docker image that contains a TF model server with struct2tensor
818
ops linked. This docker image is available at
919
`gcr.io/tfx-oss-public/s2t_tf_serving` .
@@ -14,10 +24,16 @@
1424

1525
## Bug Fixes and Other Changes
1626

27+
* Depends on `tensorflow-metadata>=0.26,<0.27`.
28+
1729
## Breaking changes
1830

31+
* N/A
32+
1933
## Deprecations
2034

35+
* N/A
36+
2137
## Release 0.25.0
2238

2339
## Major Features and Improvements

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def select_constraint(default, nightly=None, git_master=None):
7777
'protobuf>=3.8.0,<4',
7878
'tensorflow>=2.3.0,<2.4',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=0.25,<0.26',
81-
nightly='>=0.26.0.dev',
80+
default='>=0.26,<0.27',
81+
nightly='>=0.27.0.dev',
8282
git_master='@git+https://github.com/tensorflow/metadata@master'),
8383
'pyarrow>=0.17,<1',
8484
],

struct2tensor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""Contains the version string of struct2tensor."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '0.26.0.dev'
18+
__version__ = '0.27.0.dev'

0 commit comments

Comments
 (0)