Releases: Chris00/ocaml-csv
Releases · Chris00/ocaml-csv
2.4
CHANGES:
- Fixes the build on Windows with CRLF checkout (@dra27).
- Allows use of the repo in a Duniverse (@dra27).
2.3
CHANGES:
- Be compatible with OCaml ≥ 4.08 (fixes #28).
- Put
csvtool
in its own package.
- Use UTF-8 to determine column widths for the "readable" format
(fixes #21).
- Add deprecation attributes.
- Fix alignment in
csvtool
usage message.
- Small improvements to the documentation.
2.2
CHANGES:
- Compile the pre-processing script. This makes possible to install
the package using a compiler with the -static
flag. (#25)
2.1
CHANGES:
- Improve the documentation of
Csv.Rows.load
and of_in_obj
.
- Slightly improve tests.
- Use Dune (the new name for Jbuilder).
2.0
2.0 2017-09-02
- Split the package into
csv
and csv-lwt
.
- Port to
jbuilder
and topkg
.
Version 1.7
csv-1.7.tar.gz
- Option to automatically try to fix bad CSV files.
- Option for force quoting on output.
- Possibility to set one's own header after reading some rows of the file.
- Defense against using
\n
and \r
as separators.
csvtool
can call bash functions (do not go through /bin/sh
).
Version 1.6
New Csv_lwt
module implementing a Lwt of the CSV library.
Version 1.5
- Improve various commands of
csvtool
avoiding loading the whole CSV file to memory.
- As a consequence, one avoids some
Stack_overflow
exceptions for long files.
CSV 1.4.2
- Add the possibility to specify an output format to
csvtool
.
1.4.1
Fix writing bug when excel_tricks
is enabled.