Skip to content

Commit 4b6730a

Browse files
committed
Struct2Tensor 0.33.0 Release
PiperOrigin-RevId: 387212156
1 parent db4e347 commit 4b6730a

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-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.33.0](https://github.com/google/struct2tensor/releases/tag/v0.33.0) | 2.5.0
128129
[0.32.0](https://github.com/google/struct2tensor/releases/tag/v0.32.0) | 2.5.0
129130
[0.31.0](https://github.com/google/struct2tensor/releases/tag/v0.31.0) | 2.5.0
130131
[0.30.0](https://github.com/google/struct2tensor/releases/tag/v0.30.0) | 2.4.0

RELEASE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,30 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
## Version 0.33.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Added doc with benchmark numbers. Also added the benchmark code and test
1022
data.
23+
* Depends on `tensorflow-metadata>=1.2.0,<1.3.0`.
1124

1225
## Breaking Changes
1326

27+
* N/A
28+
1429
## Deprecations
1530

31+
* N/A
32+
1633
## Version 0.32.0
1734

1835
## 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.5.0,<2.6',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=1.1,<1.2',
81-
nightly='>=1.2.0.dev',
80+
default='>=1.2,<1.3',
81+
nightly='>=1.3.0.dev',
8282
git_master='@git+https://github.com/tensorflow/metadata@master'),
8383
'pyarrow>=1,<3',
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.33.0.dev'
18+
__version__ = '0.34.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 = "f01d580217c1c557a06ea21709422ca290797797" # 1.1.0
65+
_TFMD_COMMIT_HASH = "b028bc6e2f966cbbfd12a8a8b3408d17bf91c1e4" # 1.2.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "f89a5dd68e5adefd7f0f4218b6b763132bbdceec491522d89c1caba3457045bc",
68+
sha256 = "6c996d15cbea9e4aade19c96829e4a8d5971455f0027afee531d8080bd02c1c4",
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)