2017-03-10 01:09:18 +00:00
|
|
|
# CHANGELOG
|
|
|
|
|
|
|
|
This log is intended to keep track of backwards-incompatible changes, including
|
|
|
|
but not limited to API changes and file location changes. Minor behavioral
|
|
|
|
changes may not be included if they are not expected to break existing code.
|
|
|
|
|
|
|
|
|
2017-03-21 20:44:35 +00:00
|
|
|
## Unreleased
|
|
|
|
|
|
|
|
* `cellDates` affects parsing in non-XLSX formats
|
|
|
|
|
2017-03-16 01:17:24 +00:00
|
|
|
## 0.9.3 (2017-03-15)
|
2017-03-14 08:19:51 +00:00
|
|
|
|
|
|
|
* XLML property names are more closely mapped to the XLSX equivalent
|
2017-03-15 08:19:02 +00:00
|
|
|
* Stub cells are now cell type `z`
|
2017-03-14 08:19:51 +00:00
|
|
|
|
2017-03-13 06:46:37 +00:00
|
|
|
## 0.9.2 (2017-03-13)
|
|
|
|
|
|
|
|
* Removed stale TypeScript definition files. Flowtype comments are used in the
|
|
|
|
`xlsx.flow.js` source and stripped to produce `xlsx.js`.
|
|
|
|
* sed usage reworked to support GNU sed in-place form. BSD sed seems to work,
|
|
|
|
but the build script has not been tested on other sed variants:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ sed -i.ext [...] # GNU
|
|
|
|
$ sed -i .ext [...] # bsd
|
|
|
|
```
|
|
|
|
|
2017-03-10 01:09:18 +00:00
|
|
|
## 0.9.0 (2017-03-09)
|
|
|
|
|
|
|
|
* Removed ods.js source. The xlsx.js source absorbed the ODS logic and exposes
|
|
|
|
the ODS variable, so projects should remove references to ods.js
|
|
|
|
|