From 872df4bd9f0d25e64823799d8db1f972d388edab Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 12 Jan 2016 14:27:05 -0800 Subject: [PATCH] Bump version number --- CHANGELOG.md | 5 +++++ geojson.c | 2 +- version.h | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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"