Skip to content

Commit 202d7ff

Browse files
committed
Struct2Tensor 0.27.0 Release
PiperOrigin-RevId: 353967724
1 parent 9d7b33f commit 202d7ff

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

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+
## Release 0.27.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Depends on `pyarrow>=1,<3`
1022
* Depends on `tensorflow>=2.4.0,<2.5`
23+
* Depends on `tensorflow-metadata>=0.27,<0.28`
1124

1225
## Breaking changes
1326

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

31+
* N/A
32+
1633
## Release 0.26.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.8.0,<4',
7878
'tensorflow>=2.4.0,<2.5',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=0.26,<0.27',
81-
nightly='>=0.27.0.dev',
80+
default='>=0.27,<0.28',
81+
nightly='>=0.28.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.27.0.dev'
18+
__version__ = '0.28.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 = "1194a9de032c1eaf9d4e13efb31934f88e4fa4f5" # 0.26.0
65+
_TFMD_COMMIT_HASH = "7a309f92b82c1125baf5e7c4f8ff68ff07ce2fa3" # 0.27.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "61c854f4f0605106517bb07c6574ff27b8fcdf71485ebf009eaf9759391e3d8c",
68+
sha256 = "dc9cd1c2c46bcb62ccc150632e47568b61c6e380339f9c40d2ac2f10e8561913",
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)