Skip to content

Tags: vincentlaucsb/csv-parser

Tags

2.3.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix memory issues in CSVFieldList (#237)

2.2.3

CSV Parser 2.2.3

Fix off-by-one issue in tests and update README

2.2.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove -WError flag (#229)

2.2.1

Update README & version numbers

Project is now more CMake FetchContent friendly

2.2.0

Fix CSV floating point serialization issue

Fix CSV serialization issue (particularly impacting multiples of 10) caused by inaccurate digit calculation

2.1.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
CSV Parser 2.1.3 Patch 7/28/21 (#179)

* Fixed more compilation errors

* Added hex number parsing and a minor bug fix that could cause an assertion failure in C++11

* Fixed some clang issues

* More fixes

* Weird clang issues

* Update test_write_csv.cpp

2.1.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
CSV Parser 2.1.2: July 26, 2021 Patch (#177)

* Fix C++-14 compile issues

* CSV Parser should now build with std=c++11 on g++-7.5

* Fixed issues with floating point writing

* Fixed newlines not being escaped

* Update single header

2.1.1

CSV Parser 2.1.1

2.1.0.1

Fix #142 & update single header csv.hpp

2.1.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
CSV Parser 2.1.0 (#131)

* Update csv_row.cpp

* Simplified handling of quoted fields

* Added tokenizer

* Some minor code clean up

* Update raw_csv_data.hpp

* Some more code clean up

* Added thread safety test

* read_csv() now makes calls that are aligned to the CSV

* Added more CSV writer specializations

* Update test_round_trip.cpp

* Update test_round_trip.cpp

* Simplified CSVWriter

* Update csv_writer.hpp

* Updated docs

* Some code clean up

* Changed how custom types are serialized

* Update csv_writer.hpp

* Attempt to make BasicCSVParser no-copy

* Created different basic_csv_parser specializations

* Got CSVGuessing working again

* Got round trip test working again

* Got more tests working again

* Fixed some failing tests

* Most unit tests working again

* CSVStat no longer inherits from CSVReader

* Update single header

* Code clean up

* More code clean up

* Fix CSVStat segfault

* Fixed bug in parse_loop() & c++11 compatibility issues

* Fixed g++-6 compatibility

* Added some optimizations

* Code clean up

* Added CSVReader constructor over an ifstream

* Attempt to fix ifstream parsing

* Fixed std::ifstream parsing

* Added more comments

* Fixed a bunch of warnings

* Last update of docs

* Update README.md