Merge pull request #299 from mapbox/tile-join-whitespace

Trim whitespace after commas in tile-join .csv input
This commit is contained in:
Eric Fischer 2016-09-21 13:30:28 -07:00 committed by GitHub
commit dc86eb6b5a
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,7 @@
## 1.14.1
* Whitespace after commas in tile-join .csv input is no longer significant
## 1.14.0
* Tile-join is multithreaded and can merge multiple vector mbtiles files together

View File

@ -566,6 +566,10 @@ std::vector<std::string> split(char *s) {
if (*s == ',') {
s++;
while (*s && isspace(*s)) {
s++;
}
}
}

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.14.0\n"
#define VERSION "tippecanoe v1.14.1\n"