Skip to content

Commit 3284d81

Browse files
authored
Merge pull request #13 from jay90099/r0.32.0
Struct2Tensor 0.32.0 Release
2 parents 47d6517 + 49f3bc6 commit 3284d81

File tree

2 files changed

+1
-258
lines changed

2 files changed

+1
-258
lines changed

RELEASE.md

Lines changed: 0 additions & 257 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# `struct2tensor` release notes
22

3-
# Current Version (not yet released; still in development)
4-
5-
## Major Features and Improvements
6-
7-
## Bug Fixes and Other Changes
8-
9-
## Breaking Changes
10-
11-
## Deprecations
12-
133
## Version 0.32.0
144

155
## Major Features and Improvements
@@ -28,250 +18,3 @@
2818
## Deprecations
2919

3020
* N/A
31-
32-
## Version 0.31.0
33-
34-
## Major Features and Improvements
35-
36-
* N/A
37-
38-
## Bug Fixes and Other Changes
39-
40-
* Introduced DecodeProtoSparseV4. It is same as V3 and will replace V3 soon.
41-
* DecodeProtoSparseV3 is now the default (instead of V2).
42-
* Bumped tf version for statically linked libraries to TF 2.5.0.
43-
* Depends on `tensorflow>=2.5.0,<2.6`.
44-
* Depends on `tensorflow-metadata>=1.0.0,<1.1.0`.
45-
46-
## Breaking Changes
47-
48-
* N/A
49-
50-
## Deprecations
51-
52-
* N/A
53-
54-
## Release 0.30.0
55-
56-
## Major Features and Improvements
57-
58-
* N/A
59-
60-
## Bug Fixes and Other Changes
61-
62-
* Deprecate `get_ragged_tensors()` and `get_sparse_tensors()` in prensor_util.
63-
* Expose `get_ragged_tensors()` and `get_sparse_tensors()` as `Prensor`
64-
methods.
65-
* Expose `get_positional_index` as a method of `NodeTensor`.
66-
* Depends on `tensorflow-metadata>=0.30,<0.31`
67-
68-
## Breaking Changes
69-
70-
* N/A
71-
72-
## Deprecations
73-
74-
* N/A
75-
76-
## Release 0.29.0
77-
78-
## Major Features and Improvements
79-
80-
* N/A
81-
82-
## Bug Fixes and Other Changes
83-
84-
* Allow path to concat with string.
85-
* Bumped the mininum bazel version required to build `struct2tensor` to 3.7.2.
86-
* Depends on `tensorflow-metadata>=0.29,<0.30`
87-
88-
## Breaking Changes
89-
90-
* N/A
91-
92-
## Deprecations
93-
94-
* N/A
95-
96-
## Release 0.28.0
97-
98-
## Major Features and Improvements
99-
100-
* N/A
101-
102-
## Bug Fixes and Other Changes
103-
104-
* Depends on `tensorflow-metadata>=0.28,<0.29`
105-
106-
## Breaking Changes
107-
108-
* N/A
109-
110-
## Deprecations
111-
112-
* N/A
113-
114-
## Release 0.27.0
115-
116-
## Major Features and Improvements
117-
118-
* N/A
119-
120-
## Bug Fixes and Other Changes
121-
122-
* Depends on `pyarrow>=1,<3`
123-
* Depends on `tensorflow>=2.4.0,<2.5`
124-
* Depends on `tensorflow-metadata>=0.27,<0.28`
125-
126-
## Breaking changes
127-
128-
* N/A
129-
130-
## Deprecations
131-
132-
* N/A
133-
134-
## Release 0.26.0
135-
136-
## Major Features and Improvements
137-
138-
* Created a docker image that contains a TF model server with struct2tensor
139-
ops linked. This docker image is available at
140-
`gcr.io/tfx-oss-public/s2t_tf_serving` .
141-
* Add support for string_views for intermediate serialized protos. To use, set
142-
the option "use_string_view" in CalculateOptions to true. string_views are
143-
potentially more memory bandwidth efficient depending on the depth and
144-
complexity of the input proto.
145-
146-
## Bug Fixes and Other Changes
147-
148-
* Depends on `tensorflow-metadata>=0.26,<0.27`.
149-
150-
## Breaking changes
151-
152-
* N/A
153-
154-
## Deprecations
155-
156-
* N/A
157-
158-
## Release 0.25.0
159-
160-
## Major Features and Improvements
161-
162-
* From this release Struct2Tensor will also be hosting nightly packages on
163-
https://pypi-nightly.tensorflow.org. To install the nightly package use the
164-
following command:
165-
166-
```
167-
pip install -i https://pypi-nightly.tensorflow.org/simple struct2tensor
168-
```
169-
170-
Note: These nightly packages are unstable and breakages are likely to
171-
happen. The fix could often take a week or more depending on the complexity
172-
involved for the wheels to be available on the PyPI cloud service. You can
173-
always use the stable version of struct2tensor available on PyPI by running
174-
the command `pip install struct2tensor` .
175-
176-
## Bug Fixes and Other Changes
177-
178-
* Update __init__.py to import the API, instead of just the modules.
179-
* Provide an __init__.py for struct2tensor.expression_impl directory. This is
180-
meant for power users.
181-
* Update python notebook to use import style.
182-
* Fix bug in prensor_to_structured_tensor.
183-
* Depends on `tensorflow-metadata>=0.25,<0.26`.
184-
* Depends on `pyarrow>=0.17,<1`.
185-
186-
## Breaking changes
187-
188-
* N/A
189-
190-
## Deprecations
191-
192-
* N/A
193-
194-
## Release 0.24.0
195-
196-
## Major Features and Improvements
197-
198-
* Add support for converting prensor to `StructuredTensor`.
199-
200-
## Bug Fixes and Other Changes
201-
202-
* Depends on `tensorflow>=2.3.0,<2.4`
203-
* Depends on `tensorflow-metadata>=0.24,<0.25`
204-
205-
## Breaking changes
206-
207-
* N/A
208-
209-
## Deprecations
210-
211-
* Deprecated py3.5 support
212-
213-
## Release 0.23.0
214-
215-
### Major Features and Improvements
216-
217-
* Add promote for substructures.
218-
* Add support for converting `StructuredTensor` to prensor.
219-
220-
### Bug Fixes and Other Changes
221-
222-
* Depends on `tensorflow>=2.3.0,<2.4`
223-
* Depends on `tensorflow-metadata>=0.23,<0.24`
224-
225-
### Breaking Changes
226-
227-
* Drop snappy support for parquet dataset.
228-
229-
### Deprecations
230-
231-
* Deprecating Py2 support.
232-
233-
## Release 0.22.0
234-
235-
### Major Features and Improvements
236-
237-
### Bug Fixes and Other Changes
238-
239-
* Depends on `tensorflow>=2.2.0,<2.3
240-
241-
### Breaking Changes
242-
243-
### Deprecations
244-
245-
## Release 0.21.1
246-
247-
### Major Features and Improvements
248-
249-
* Bumped Tensorflow version for statically linked libraries from 1.5 to 2.1.
250-
251-
### Bug Fixes and Other Changes
252-
253-
* Added tests for statically linked libraries.
254-
* Statically linked libraries build now.
255-
256-
### Breaking Changes
257-
258-
### Deprecations
259-
260-
## Release 0.21.0
261-
262-
### Major Features and Improvements
263-
264-
* Parquet dataset that can apply expressions to a parquet schema, allowing for
265-
reading data from IO to tensors directly.
266-
267-
### Bug Fixes and Other Changes
268-
269-
* Now requires tensorflow>=2.1.0,<2.2.
270-
271-
### Breaking Changes
272-
273-
### Deprecations
274-
275-
## Release 0.0.1dev6
276-
277-
* Initial release of struct2tensor.

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.33.0.dev'
18+
__version__ = '0.32.0'

0 commit comments

Comments
 (0)