Skip to content

Commit e9b2d42

Browse files
committed
Struct2Tensor 0.43.0 Release
PiperOrigin-RevId: 493645385
1 parent c9fee96 commit e9b2d42

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-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.43.0](https://github.com/google/struct2tensor/releases/tag/v0.43.0) | 2.11.0
118119
[0.42.0](https://github.com/google/struct2tensor/releases/tag/v0.42.0) | 2.10.0
119120
[0.41.0](https://github.com/google/struct2tensor/releases/tag/v0.41.0) | 2.9.0
120121
[0.40.0](https://github.com/google/struct2tensor/releases/tag/v0.40.0) | 2.9.0

RELEASE.md

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

77
## Bug Fixes and Other Changes
88

9-
* Depends on `tensorflow>=2.11.0,<2.12`.
9+
## Breaking Changes
1010

1111
## Deprecations
1212

13+
# Version 0.43.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
21+
* Depends on `tensorflow>=2.11.0,<2.12`.
22+
1323
## Breaking Changes
1424

25+
* N/A
26+
27+
## Deprecations
28+
29+
* N/A
30+
1531
# Version 0.42.0
1632

1733
## 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.13,<4',
7878
'tensorflow>=2.11.0,<2.12',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=1.11.0,<1.12.0',
81-
nightly='>=1.12.0.dev',
80+
default='>=1.12.0,<1.13.0',
81+
nightly='>=1.13.0.dev',
8282
git_master='@git+https://github.com/tensorflow/metadata@master'),
8383
'pyarrow>=6,<7',
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.43.0.dev'
18+
__version__ = '0.44.0.dev'

struct2tensor/workspace.bzl

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

56-
_TFMD_COMMIT_HASH = "cdf4d3735a8a94ef5f63b26b87a638dd4d341c5d" # 1.11.0
56+
_TFMD_COMMIT_HASH = "47c81262a01a28beb46c9b30dbcc7303ac77ae9b" # 1.12.0
5757
http_archive(
5858
name = "com_github_tensorflow_metadata",
59-
sha256 = "18dbfbe8f48ea8de5c5eff18f74a2652e104f7464636d044d790d6bc56bec404",
59+
sha256 = "84842947b7bb15b93843adc70036ad89dd0b7bf92fe333d9a35e7461e24d6f2c",
6060
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
6161
urls = [
6262
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,

0 commit comments

Comments
 (0)