Skip to content

Commit 4ce8b46

Browse files
committed
Struct2Tensor 0.47.0 Release
PiperOrigin-RevId: 684557343
1 parent cc3db57 commit 4ce8b46

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ is an integer.
115115

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

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.47.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Bumped the minimum bazel version required to build `struct2tensor` to 6.5.0.
22+
* Depends on `tensorflow 2.16.2`.
23+
* Relax dependency on Protobuf to include version 5.x
1024

1125
## Breaking Changes
1226

27+
* N/A
28+
1329
## Deprecations
1430

31+
* N/A
32+
1533
# Version 0.46.0
1634

1735
## Major Features and Improvements

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ def select_constraint(default, nightly=None, git_master=None):
7979
# TODO(b/263060885): Remove the explicit numpy dependency once TF works
8080
# with numpy>=1.24.
8181
'numpy>=1.22',
82-
'protobuf>=4.25.2,<5;python_version>="3.11"',
82+
'protobuf>=4.25.2,<6;python_version>="3.11"',
8383
'protobuf>=3.20.3,<5;python_version<"3.11"',
8484
'tensorflow>=2.16,<2.17',
8585
'tensorflow-metadata'
8686
+ select_constraint(
87-
default='>=1.15.0,<1.16.0',
88-
nightly='>=1.16.0.dev',
87+
default='>=1.16.1,<1.17.0',
88+
nightly='>=1.17.0.dev',
8989
git_master='@git+https://github.com/tensorflow/metadata@master',
9090
),
9191
'pyarrow>=10,<11',

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.47.0.dev'
18+
__version__ = '0.48.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 = "47aaaa7aa820fd8a865babcfddbdafe11ec92a25" # 1.15.0
66+
_TFMD_COMMIT_HASH = "9d0fc933a0120ad1c99fc6ec6491a4503964821a" # 1.16.1
6767
http_archive(
6868
name = "com_github_tensorflow_metadata",
69-
sha256 = "39697919990afb427282c4a2bd6bb3da6d0cdd7434b0d3137e3f8d40e66b7dbe",
69+
sha256 = "283fa4930925b94ef8942133932cc405dde2b70f4594f435add086c0ff5be3e2",
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)