Skip to content

Commit de38a2b

Browse files
committed
Struct2Tensor 0.39.0 Release
PiperOrigin-RevId: 448012288
1 parent 6018060 commit de38a2b

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

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.39.0](https://github.com/google/struct2tensor/releases/tag/v0.39.0) | 2.8.0
128129
[0.38.0](https://github.com/google/struct2tensor/releases/tag/v0.38.0) | 2.8.0
129130
[0.37.0](https://github.com/google/struct2tensor/releases/tag/v0.37.0) | 2.7.0
130131
[0.36.0](https://github.com/google/struct2tensor/releases/tag/v0.36.0) | 2.7.0

RELEASE.md

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

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.39.0
14+
15+
## Major Features and Improvements
16+
717
* From this version we will be releasing python 3.9 wheels.
818

919
## Bug Fixes and Other Changes
1020

21+
* Depends on `tensorflow-metadata>=1.8.0,<1.9.0`.
22+
1123
## Breaking Changes
1224

25+
* N/A
26+
1327
## Deprecations
1428

29+
* N/A
30+
1531
# Version 0.38.0
1632

1733
## 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.8.0,<2.9',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=1.7.0,<1.8.0',
81-
nightly='>=1.8.0.dev',
80+
default='>=1.8.0,<1.9.0',
81+
nightly='>=1.9.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.39.0.dev'
18+
__version__ = '0.40.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 = "e67d2082299d8cd1f7ad2c6c0aa091d55ab1231e" # 1.7.0
65+
_TFMD_COMMIT_HASH = "debd135f4af27b1a513f12b2fd284db261324795" # 1.8.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "4b9b84486deeaf3e3406fc3f13c4fc2c94aaf797c7b1b0e08e76de5a74811f57",
68+
sha256 = "265a6ce085aceca67aa97ac40b07529009b208414782d71f1e0e1fa092c9447a",
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)