Skip to content

Commit ec19386

Browse files
committed
Struct2Tensor 0.46.0 Release
PiperOrigin-RevId: 627423146
1 parent e6e9794 commit ec19386

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![PyPI](https://badge.fury.io/py/struct2tensor.svg)](https://badge.fury.io/py/struct2tensor)
55

66
<!--*
7-
freshness: { owner: 'iindyk' reviewed: '2022-04-27' }
7+
freshness: { owner: 'iindyk' reviewed: '2024-04-22' }
88
*-->
99

1010
## Introduction
@@ -115,6 +115,7 @@ is an integer.
115115

116116
struct2tensor | tensorflow
117117
---------------------------------------------------------------------- | ----------
118+
[0.46.0](https://github.com/google/struct2tensor/releases/tag/v0.46.0) | 2.15.0
118119
[0.45.0](https://github.com/google/struct2tensor/releases/tag/v0.45.0) | 2.13.0
119120
[0.44.0](https://github.com/google/struct2tensor/releases/tag/v0.44.0) | 2.12.0
120121
[0.43.0](https://github.com/google/struct2tensor/releases/tag/v0.43.0) | 2.11.0

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.46.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Bumped the Ubuntu version on which `struct2tensor` is tested to 20.04
1022
(previously was 16.04).
1123
* Depends on `tensorflow~=2.15.0`.
@@ -15,6 +27,8 @@
1527

1628
## Breaking Changes
1729

30+
* N/A
31+
1832
## Deprecations
1933

2034
* Deprecated python 3.8 support.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ def select_constraint(default, nightly=None, git_master=None):
8181
'protobuf>=3.20.3,<5;python_version<"3.11"',
8282
'tensorflow~=2.15',
8383
'tensorflow-metadata' + select_constraint(
84-
default='>=1.14.0,<1.15.0',
85-
nightly='>=1.15.0.dev',
84+
default='>=1.15.0,<1.16.0',
85+
nightly='>=1.16.0.dev',
8686
git_master='@git+https://github.com/tensorflow/metadata@master'),
8787
'pyarrow>=10,<11',
8888
],

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.46.0.dev'
18+
__version__ = '0.47.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 = "7073f7452d6cecbb5279781451f7c3144c924367" # 1.14.0
66+
_TFMD_COMMIT_HASH = "47aaaa7aa820fd8a865babcfddbdafe11ec92a25" # 1.15.0
6767
http_archive(
6868
name = "com_github_tensorflow_metadata",
69-
sha256 = "e1140d1cb5c4c244e1af8fc54447ef3f912fdee4fd49ff273e330914e93031b8",
69+
sha256 = "39697919990afb427282c4a2bd6bb3da6d0cdd7434b0d3137e3f8d40e66b7dbe",
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)