-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.txt
44 lines (36 loc) · 1.08 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
2019-7-2 v0.0.1
- Add initial experimental implementations
- Add README.md
- Add some naive tests
2019-7-3 v0.0.2
- Add escape/unescape utils
- Add experimental CSVLineReader
2019-7-8 v0.0.3
- Add doc to functions
- Start testing with google test
- Add tests for several components
2019-7-10 v0.0.4
- Implement delimiter split with escapes
- Change behavior of split
- Fix line reader when encountering premature EOF
- Add tests for alternate containers
2019-7-11 v0.1.0
- Major Refactor
- Add Doxyfile
- Add .clang-format
- Input Parsers and Output Formatters
2019-7-12 v0.1.1
- Add parameter to writer for alternate line_terminator
- Change build system to cmake
- Misc updates
2019-7-16 v0.1.2
- Improve read performance
- Add inclusion guards to a header file
- Make some clang-tidy recommended changes
- Backfill changelog
2019-7-19 v0.1.3
- Add threaded unescaping InputParser
- Add tests for threaded unescaping InputParser
2019-9-23 v0.2.0
- Change formatters and parsers to be functors passed as template arguments
- Merge reading into associative containers