Skip to content

Commit 25f8a76

Browse files
committed
Struct2Tensor 0.25.0 Release
PiperOrigin-RevId: 340481080
1 parent eb10df3 commit 25f8a76

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

RELEASE.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking changes
10+
11+
## Deprecations
12+
13+
## Release 0.25.0
14+
15+
## Major Features and Improvements
16+
717
* From this release Struct2Tensor will also be hosting nightly packages on
818
https://pypi-nightly.tensorflow.org. To install the nightly package use the
919
following command:
@@ -22,14 +32,20 @@
2232
2333
* Update __init__.py to import the API, instead of just the modules.
2434
* Provide an __init__.py for struct2tensor.expression_impl directory. This is
25-
ment for power users.
35+
meant for power users.
2636
* Update python notebook to use import style.
2737
* Fix bug in prensor_to_structured_tensor.
38+
* Depends on `tensorflow-metadata>=0.25,<0.26`.
39+
* Depends on `pyarrow>=0.17,<1`.
2840
2941
## Breaking changes
3042
43+
* N/A
44+
3145
## Deprecations
3246
47+
* N/A
48+
3349
## Release 0.24.0
3450
3551
## Major Features and Improvements

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ def select_constraint(default, nightly=None, git_master=None):
7777
'protobuf>=3.8.0,<4',
7878
'tensorflow>=2.3.0,<2.4',
7979
'tensorflow-metadata' + select_constraint(
80-
default='>=0.24,<0.25',
81-
nightly='>=0.25.0.dev',
80+
default='>=0.25,<0.26',
81+
nightly='>=0.26.0.dev',
8282
git_master='@git+https://github.com/tensorflow/metadata@master'),
83-
'pyarrow>=0.15,<1',
83+
'pyarrow>=0.17,<1',
8484
],
8585
# Add in any packaged data.
8686
include_package_data=True,

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.25.0.dev'
18+
__version__ = '0.26.0.dev'

0 commit comments

Comments
 (0)