Skip to content

Commit 6469463

Browse files
committed
Struct2Tensor 0.37.0 Release
PiperOrigin-RevId: 422866139
1 parent 3f4acc3 commit 6469463

5 files changed

Lines changed: 24 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ is an integer.
125125

126126
struct2tensor | tensorflow
127127
---------------------------------------------------------------------- | ----------
128+
[0.37.0](https://github.com/google/struct2tensor/releases/tag/v0.37.0) | 2.7.0
128129
[0.36.0](https://github.com/google/struct2tensor/releases/tag/v0.36.0) | 2.7.0
129130
[0.35.0](https://github.com/google/struct2tensor/releases/tag/v0.35.0) | 2.6.0
130131
[0.34.0](https://github.com/google/struct2tensor/releases/tag/v0.34.0) | 2.6.0

RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010

1111
## Deprecations
1212

13+
# Version 0.37.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
21+
* Depends on `tensorflow-metadata>=1.6.0,<1.7.0`.
22+
23+
## Breaking Changes
24+
25+
* N/A
26+
27+
## Deprecations
28+
29+
* N/A
30+
1331
# Version 0.36.0
1432

1533
## 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.13,<4',
7878
'tensorflow>=2.7.0,<2.8',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=1.5.0,<1.6.0',
81-
nightly='>=1.6.0.dev',
80+
default='>=1.6.0,<1.7.0',
81+
nightly='>=1.7.0.dev',
8282
git_master='@git+https://github.com/tensorflow/metadata@master'),
8383
'pyarrow>=1,<6',
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.37.0.dev'
18+
__version__ = '0.38.0.dev'

struct2tensor/workspace.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def struct2tensor_workspace():
6262
)
6363
# LINT.ThenChange(third_party/arrow.BUILD:parquet_gen_version)
6464

65-
_TFMD_COMMIT_HASH = "4c148dfddb289714137ab35204ecca4465b24657" # 1.5.0
65+
_TFMD_COMMIT_HASH = "495416f513f53257293a262c36e992e5d25f3d92" # 1.6.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "21ce603a5e8f795ac1c2b35c975866177686ab6c5e704f87b66b67ff58a7ffa4",
68+
sha256 = "aadc6925c0b336e172ac70bce2f7f0b0037bb00010f4c8ddbf92759010a40a78",
6969
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
7070
urls = [
7171
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,

0 commit comments

Comments
 (0)