Skip to content

Commit 86d8676

Browse files
committed
Struct2Tensor 0.45.0 Release
PiperOrigin-RevId: 555586928
1 parent 98a508e commit 86d8676

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ is an integer.
115115

116116
struct2tensor | tensorflow
117117
---------------------------------------------------------------------- | ----------
118-
[0.44.0](https://github.com/google/struct2tensor/releases/tag/v0.43.0) | 2.12.0
118+
[0.45.0](https://github.com/google/struct2tensor/releases/tag/v0.45.0) | 2.13.0
119+
[0.44.0](https://github.com/google/struct2tensor/releases/tag/v0.44.0) | 2.12.0
119120
[0.43.0](https://github.com/google/struct2tensor/releases/tag/v0.43.0) | 2.11.0
120121
[0.42.0](https://github.com/google/struct2tensor/releases/tag/v0.42.0) | 2.10.0
121122
[0.41.0](https://github.com/google/struct2tensor/releases/tag/v0.41.0) | 2.9.0

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.45.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Depends on `pyarrow>=10,<11`.
1022
* Depends on `numpy>=1.22.0`.
1123
* Depends on `tensorflow>=2.13.0,<3`.
1224

1325
## Breaking Changes
1426

27+
* N/A
28+
1529
## Deprecations
1630

31+
* N/A
32+
1733
# Version 0.44.0
1834

1935
## Major Features and Improvements

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def select_constraint(default, nightly=None, git_master=None):
8080
'protobuf>=3.20.3,<5',
8181
'tensorflow>=2.13,<3',
8282
'tensorflow-metadata' + select_constraint(
83-
default='>=1.13.1,<1.14.0',
84-
nightly='>=1.14.0.dev',
83+
default='>=1.14.0,<1.15.0',
84+
nightly='>=1.15.0.dev',
8585
git_master='@git+https://github.com/tensorflow/metadata@master'),
8686
'pyarrow>=10,<11',
8787
],

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.45.0.dev'
18+
__version__ = '0.46.0.dev'

struct2tensor/workspace.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ def struct2tensor_workspace():
6363
urls = ["https://github.com/apache/arrow/archive/%s.zip" % ARROW_COMMIT],
6464
)
6565

66-
_TFMD_COMMIT_HASH = "b61c02b37ec263d771bb140a14a7308b5255a8d0" # 1.13.1
66+
_TFMD_COMMIT_HASH = "7073f7452d6cecbb5279781451f7c3144c924367" # 1.14.0
6767
http_archive(
6868
name = "com_github_tensorflow_metadata",
69-
sha256 = "0f28aae9f3466f731f6020636634066a29ea0bb57979709654679310e4af7c15",
69+
sha256 = "e1140d1cb5c4c244e1af8fc54447ef3f912fdee4fd49ff273e330914e93031b8",
7070
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
7171
urls = [
7272
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,

0 commit comments

Comments
 (0)