Skip to content

Commit b2cbc59

Browse files
committed
Struct2Tensor 0.40.0 Release
PiperOrigin-RevId: 456397552
1 parent 5a30f21 commit b2cbc59

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

README.md

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

116116
struct2tensor | tensorflow
117117
---------------------------------------------------------------------- | ----------
118+
[0.40.0](https://github.com/google/struct2tensor/releases/tag/v0.40.0) | 2.8.0
118119
[0.39.0](https://github.com/google/struct2tensor/releases/tag/v0.39.0) | 2.8.0
119120
[0.38.0](https://github.com/google/struct2tensor/releases/tag/v0.38.0) | 2.8.0
120121
[0.37.0](https://github.com/google/struct2tensor/releases/tag/v0.37.0) | 2.7.0

RELEASE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,33 @@
44

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.40.0
14+
15+
## Major Features and Improvements
16+
717
* Linux wheels now specifically conform to
818
[manylinux2014](https://peps.python.org/pep-0599/), an upgrade from
919
manylinux2010. This is aligned with TensorFlow 2.9 requirement.
1020

1121
## Bug Fixes and Other Changes
1222

1323
* Depends on `tensorflow>=2.9.0,<2.10`.
24+
* Depends on `tensorflow-metadata>=1.9.0,<1.10.0`.
1425

1526
## Breaking Changes
1627

28+
* N/A
29+
1730
## Deprecations
1831

32+
* N/A
33+
1934
# Version 0.39.0
2035

2136
## 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.9.0,<2.10',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=1.8.0,<1.9.0',
81-
nightly='>=1.9.0.dev',
80+
default='>=1.9.0,<1.10.0',
81+
nightly='>=1.10.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.40.0.dev'
18+
__version__ = '0.41.0.dev'

struct2tensor/workspace.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ def struct2tensor_workspace():
5252
)
5353
# LINT.ThenChange(third_party/arrow.BUILD:parquet_gen_version)
5454

55-
_TFMD_COMMIT_HASH = "debd135f4af27b1a513f12b2fd284db261324795" # 1.8.0
55+
_TFMD_COMMIT_HASH = "3fb0d94ed474cbc6269b594239a95b0367029e34" # 1.9.0
5656
http_archive(
5757
name = "com_github_tensorflow_metadata",
58-
sha256 = "265a6ce085aceca67aa97ac40b07529009b208414782d71f1e0e1fa092c9447a",
58+
sha256 = "41fe892acd713851d617a69b82ff56557e5affe026e3c4804278bf7ddd144e51",
5959
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
6060
urls = [
6161
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,

0 commit comments

Comments
 (0)