Fix a bug that could cause the wrong features to be coalesced

This commit is contained in:
Eric Fischer 2017-11-22 11:51:18 -08:00
parent 9964784e77
commit 8230987405
6 changed files with 812 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## 1.27.1
* Fix a potential null pointer when parsing GeoJSON with bare geometries
* Fix a bug that could cause the wrong features to be coalesced when
input was parsed in parallel
## 1.27.0
* Add tippecanoe-json-tool for sorting and joining GeoJSON files

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -186,7 +186,7 @@ int metacmp(int m1, const std::vector<long long> &keys1, const std::vector<long
return type1 - type2;
}
int cmp = strcmp(s1, s2);
if (s1 != s2) {
if (cmp != 0) {
return cmp;
}
}

View File

@ -1,6 +1,6 @@
#ifndef VERSION_HPP
#define VERSION_HPP
#define VERSION "tippecanoe v1.27.0\n"
#define VERSION "tippecanoe v1.27.1\n"
#endif