Skip to content

Commit ea2926d

Browse files
committed
Struct2Tensor 0.30.0 Release
PiperOrigin-RevId: 369454937
1 parent 8abe9f4 commit ea2926d

4 files changed

Lines changed: 22 additions & 5 deletions

File tree

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
## Release 0.30.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Expose `get_positional_index` as a method of `NodeTensor`.
22+
* Depends on `tensorflow-metadata>=0.30,<0.31`
1023

1124
## Breaking Changes
1225

26+
* N/A
27+
1328
## Deprecations
1429

30+
* N/A
31+
1532
## Release 0.29.0
1633

1734
## 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.4.0,<2.5',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=0.29,<0.30',
81-
nightly='>=0.30.0.dev',
80+
default='>=0.30,<0.31',
81+
nightly='>=0.31.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.30.0.dev'
18+
__version__ = '0.31.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 = "a9e43c924e4bc29adc07c20f2a6d17f49b76da39" # 0.29.0
65+
_TFMD_COMMIT_HASH = "33c6d8f340394216be253522b7fc90c211560637" # 0.30.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "6a927483be6bdbfc8edd73f33e869a417f520e82541b412a3c5c15a8f97eafef",
68+
sha256 = "6a0942b79d4f7eaf7d33486d1837bb4613451475121e156dbef474c94eddc773",
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)