diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ff3cc..304ebcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.7.0 + +* Parallel processing of input with -P works with streamed input too +* Error handling if unsupported options given to -p or -a + ## 1.6.4 * Fix crashing bug when layers are being merged with -l diff --git a/geojson.c b/geojson.c index b8cb9ec..09e74dc 100644 --- a/geojson.c +++ b/geojson.c @@ -280,7 +280,7 @@ struct index { long long end; unsigned long long index; short segment; - unsigned long long seq : (64 - 16); // pack with segment to stay in 32 bytes + unsigned long long seq : (64 - 16); // pack with segment to stay in 32 bytes }; int indexcmp(const void *v1, const void *v2) { diff --git a/version.h b/version.h index 14cb23d..2c7c8d7 100644 --- a/version.h +++ b/version.h @@ -1 +1 @@ -#define VERSION "tippecanoe v1.6.4\n" +#define VERSION "tippecanoe v1.7.0\n"