Skip to content

Commit 6121075

Browse files
committed
Struct2Tensor 0.31.0 Release
PiperOrigin-RevId: 374984119
1 parent 912961d commit 6121075

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

RELEASE.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,37 @@
11
# `struct2tensor` release notes
22

3-
# Current version (not yet released; still in development)
3+
# Current Version (not yet released; still in development)
44

55
## Major Features and Improvements
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
## Version 0.31.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Introduced DecodeProtoSparseV4. It is same as V3 and will replace V3 soon.
1022
* DecodeProtoSparseV3 is now the default (instead of V2).
11-
* Bumped tf version for statically linked libraries to TF 2.5.0
12-
* Depends on `tensorflow>=2.5.0,<2.6`
23+
* Bumped tf version for statically linked libraries to TF 2.5.0.
24+
* Depends on `tensorflow>=2.5.0,<2.6`.
25+
* Depends on `tensorflow-metadata>=1.0.0,<1.1.0`.
1326

1427
## Breaking Changes
1528

29+
* N/A
30+
1631
## Deprecations
1732

33+
* N/A
34+
1835
## Release 0.30.0
1936

2037
## 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.5.0,<2.6',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=0.30,<0.31',
81-
nightly='>=0.31.0.dev',
80+
default='>=1.0,<1.1',
81+
nightly='>=1.1.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.31.0.dev'
18+
__version__ = '0.32.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 = "33c6d8f340394216be253522b7fc90c211560637" # 0.30.0
65+
_TFMD_COMMIT_HASH = "4af2da3ccf6f944af925508c3954abe2c1c6d7c8" # 1.0.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "6a0942b79d4f7eaf7d33486d1837bb4613451475121e156dbef474c94eddc773",
68+
sha256 = "d8872793b2213c9d809a36453bae6c95a7792b6636db0d62293ed5518afa9862",
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)