Skip to content

Commit 36843aa

Browse files
authored
Merge pull request #8 from jay90099/r0.28.0
struct2tensor 0.28.0 release
2 parents 269695f + 2d34e93 commit 36843aa

File tree

2 files changed

+1
-176
lines changed

2 files changed

+1
-176
lines changed

RELEASE.md

Lines changed: 0 additions & 175 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
## Release 0.28.0
144

155
## Major Features and Improvements
@@ -27,168 +17,3 @@
2717
## Deprecations
2818

2919
* N/A
30-
31-
## Release 0.27.0
32-
33-
## Major Features and Improvements
34-
35-
* N/A
36-
37-
## Bug Fixes and Other Changes
38-
39-
* Depends on `pyarrow>=1,<3`
40-
* Depends on `tensorflow>=2.4.0,<2.5`
41-
* Depends on `tensorflow-metadata>=0.27,<0.28`
42-
43-
## Breaking changes
44-
45-
* N/A
46-
47-
## Deprecations
48-
49-
* N/A
50-
51-
## Release 0.26.0
52-
53-
## Major Features and Improvements
54-
55-
* Created a docker image that contains a TF model server with struct2tensor
56-
ops linked. This docker image is available at
57-
`gcr.io/tfx-oss-public/s2t_tf_serving` .
58-
* Add support for string_views for intermediate serialized protos. To use, set
59-
the option "use_string_view" in CalculateOptions to true. string_views are
60-
potentially more memory bandwidth efficient depending on the depth and
61-
complexity of the input proto.
62-
63-
## Bug Fixes and Other Changes
64-
65-
* Depends on `tensorflow-metadata>=0.26,<0.27`.
66-
67-
## Breaking changes
68-
69-
* N/A
70-
71-
## Deprecations
72-
73-
* N/A
74-
75-
## Release 0.25.0
76-
77-
## Major Features and Improvements
78-
79-
* From this release Struct2Tensor will also be hosting nightly packages on
80-
https://pypi-nightly.tensorflow.org. To install the nightly package use the
81-
following command:
82-
83-
```
84-
pip install -i https://pypi-nightly.tensorflow.org/simple struct2tensor
85-
```
86-
87-
Note: These nightly packages are unstable and breakages are likely to
88-
happen. The fix could often take a week or more depending on the complexity
89-
involved for the wheels to be available on the PyPI cloud service. You can
90-
always use the stable version of struct2tensor available on PyPI by running
91-
the command `pip install struct2tensor` .
92-
93-
## Bug Fixes and Other Changes
94-
95-
* Update __init__.py to import the API, instead of just the modules.
96-
* Provide an __init__.py for struct2tensor.expression_impl directory. This is
97-
meant for power users.
98-
* Update python notebook to use import style.
99-
* Fix bug in prensor_to_structured_tensor.
100-
* Depends on `tensorflow-metadata>=0.25,<0.26`.
101-
* Depends on `pyarrow>=0.17,<1`.
102-
103-
## Breaking changes
104-
105-
* N/A
106-
107-
## Deprecations
108-
109-
* N/A
110-
111-
## Release 0.24.0
112-
113-
## Major Features and Improvements
114-
115-
* Add support for converting prensor to `StructuredTensor`.
116-
117-
## Bug Fixes and Other Changes
118-
119-
* Depends on `tensorflow>=2.3.0,<2.4`
120-
* Depends on `tensorflow-metadata>=0.24,<0.25`
121-
122-
## Breaking changes
123-
124-
* N/A
125-
126-
## Deprecations
127-
128-
* Deprecated py3.5 support
129-
130-
## Release 0.23.0
131-
132-
### Major Features and Improvements
133-
134-
* Add promote for substructures.
135-
* Add support for converting `StructuredTensor` to prensor.
136-
137-
### Bug Fixes and Other Changes
138-
139-
* Depends on `tensorflow>=2.3.0,<2.4`
140-
* Depends on `tensorflow-metadata>=0.23,<0.24`
141-
142-
### Breaking Changes
143-
144-
* Drop snappy support for parquet dataset.
145-
146-
### Deprecations
147-
148-
* Deprecating Py2 support.
149-
150-
## Release 0.22.0
151-
152-
### Major Features and Improvements
153-
154-
### Bug Fixes and Other Changes
155-
156-
* Depends on `tensorflow>=2.2.0,<2.3
157-
158-
### Breaking Changes
159-
160-
### Deprecations
161-
162-
## Release 0.21.1
163-
164-
### Major Features and Improvements
165-
166-
* Bumped Tensorflow version for statically linked libraries from 1.5 to 2.1.
167-
168-
### Bug Fixes and Other Changes
169-
170-
* Added tests for statically linked libraries.
171-
* Statically linked libraries build now.
172-
173-
### Breaking Changes
174-
175-
### Deprecations
176-
177-
## Release 0.21.0
178-
179-
### Major Features and Improvements
180-
181-
* Parquet dataset that can apply expressions to a parquet schema, allowing for
182-
reading data from IO to tensors directly.
183-
184-
### Bug Fixes and Other Changes
185-
186-
* Now requires tensorflow>=2.1.0,<2.2.
187-
188-
### Breaking Changes
189-
190-
### Deprecations
191-
192-
## Release 0.0.1dev6
193-
194-
* 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.29.0.dev'
18+
__version__ = '0.28.0'

0 commit comments

Comments
 (0)