File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,30 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
### Added
10
10
11
+ - New "blackhole" file format which throws away all data written into it.
12
+ Used for benchmarking.
13
+
11
14
### Changed
12
15
16
+ - When reading OPL files, CRLF file endings are now handled correctly.
17
+ - Reduce the max number of threads allowed for the ` Pool ` to 32. This should
18
+ still be plenty and might help with test failures on some architectures.
19
+
13
20
### Fixed
14
21
22
+ - Tests now run correctly independent of git ` core.autocrlf ` setting.
23
+ - Set binary mode for all files on Windows in example code.
24
+ - Low-level file functions now set an invalid parameter handler on Windows
25
+ to properly handle errors.
26
+ - Restore earlier behaviour allowing zero-length mmap. It is important to
27
+ allow zero-length memory mapping, because it is possible that such an index
28
+ is empty, for instance when one type of object is missing from an input
29
+ file as in https://github.com/osmcode/osmium-tool/issues/65 . Drawback is
30
+ that files must be opened read-write for this to work, even if we only
31
+ want to read from them.
32
+ - Use Approx() to compare floating point values in tests.
33
+ - Fix broken ` Item ` test on 32 bit platforms.
34
+
15
35
16
36
## [ 2.13.0] - 2017-08-15
17
37
You can’t perform that action at this time.
0 commit comments