Skip to content

Commit

Permalink
Struct2Tensor 0.42.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 487684335
  • Loading branch information
tfx-copybara committed Nov 14, 2022
1 parent 9ec38e9 commit d7c5400
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ is an integer.

struct2tensor | tensorflow
---------------------------------------------------------------------- | ----------
[0.42.0](https://github.com/google/struct2tensor/releases/tag/v0.42.0) | 2.10.0
[0.41.0](https://github.com/google/struct2tensor/releases/tag/v0.41.0) | 2.9.0
[0.40.0](https://github.com/google/struct2tensor/releases/tag/v0.40.0) | 2.9.0
[0.39.0](https://github.com/google/struct2tensor/releases/tag/v0.39.0) | 2.8.0
Expand Down
18 changes: 17 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,28 @@

## Bug Fixes and Other Changes

## Deprecations

## Breaking Changes

# Version 0.42.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Updates bundled `arrow` version to 6.0.1.
* Depends on `tensorflow>=2.10.0,<2.11`.

## Breaking Changes

* N/A

## Deprecations

## Breaking Changes
* N/A

# Version 0.41.0

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def select_constraint(default, nightly=None, git_master=None):
'protobuf>=3.13,<4',
'tensorflow>=2.10.0,<2.11',
'tensorflow-metadata' + select_constraint(
default='>=1.10.0,<1.11.0',
nightly='>=1.11.0.dev',
default='>=1.11.0,<1.12.0',
nightly='>=1.12.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'pyarrow>=6,<7',
],
Expand Down
2 changes: 1 addition & 1 deletion struct2tensor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of struct2tensor."""

# Note that setup.py uses this version.
__version__ = '0.42.0.dev'
__version__ = '0.43.0.dev'
4 changes: 2 additions & 2 deletions struct2tensor/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ def struct2tensor_workspace():
urls = ["https://github.com/apache/arrow/archive/%s.zip" % ARROW_COMMIT],
)

_TFMD_COMMIT_HASH = "6703ba1095f8a2fe3567f1a2209c819b530c64de" # 1.10.0
_TFMD_COMMIT_HASH = "cdf4d3735a8a94ef5f63b26b87a638dd4d341c5d" # 1.11.0
http_archive(
name = "com_github_tensorflow_metadata",
sha256 = "50232c18e8d6aee46a90e6aa81978d82f55d7d2f0c3c10409e12b18e562ee085",
sha256 = "18dbfbe8f48ea8de5c5eff18f74a2652e104f7464636d044d790d6bc56bec404",
strip_prefix = "metadata-%s" % _TFMD_COMMIT_HASH,
urls = [
"https://github.com/tensorflow/metadata/archive/%s.tar.gz" % _TFMD_COMMIT_HASH,
Expand Down

0 comments on commit d7c5400

Please sign in to comment.