Skip to content

Commit 269695f

Browse files
committed
Struct2Tensor 0.28.0 Release
PiperOrigin-RevId: 358935260
1 parent 0180881 commit 269695f

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

RELEASE.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,28 @@
66

77
## Bug Fixes and Other Changes
88

9-
## Breaking changes
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
## Release 0.28.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
21+
* Depends on `tensorflow-metadata>=0.28,<0.29`
22+
23+
## Breaking Changes
24+
25+
* N/A
1026

1127
## Deprecations
1228

29+
* N/A
30+
1331
## Release 0.27.0
1432

1533
## 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.27,<0.28',
81-
nightly='>=0.28.0.dev',
80+
default='>=0.28,<0.29',
81+
nightly='>=0.29.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.28.0.dev'
18+
__version__ = '0.29.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 = "7a309f92b82c1125baf5e7c4f8ff68ff07ce2fa3" # 0.27.0
65+
_TFMD_COMMIT_HASH = "75eef37a2d8f2e88bd7d915b03a213563c04b19a" # 0.28.0
6666
http_archive(
6767
name = "com_github_tensorflow_metadata",
68-
sha256 = "dc9cd1c2c46bcb62ccc150632e47568b61c6e380339f9c40d2ac2f10e8561913",
68+
sha256 = "2f8e883ec74a8254e4a80289faca456b29c62a4fdc196c1e8c9ccbfd710fb9ce",
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)