diff --git a/CHANGELOG.md b/CHANGELOG.md index d6857b4..03c61d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.12.8 + +* Fix the spelling of the --preserve-input-order option + ## 1.12.7 * Support the "id" field of GeoJSON objects and vector tile features diff --git a/main.cpp b/main.cpp index 23f88ac..6510f41 100644 --- a/main.cpp +++ b/main.cpp @@ -1795,7 +1795,7 @@ int main(int argc, char **argv) { {"no-feature-limit", no_argument, &prevent[P_FEATURE_LIMIT], 1}, {"no-tile-size-limit", no_argument, &prevent[P_KILOBYTE_LIMIT], 1}, {"force-feature-limit", no_argument, &prevent[P_DYNAMIC_DROP], 1}, - {"preseve-input-order", no_argument, &prevent[P_INPUT_ORDER], 1}, + {"preserve-input-order", no_argument, &prevent[P_INPUT_ORDER], 1}, {"no-polygon-splitting", no_argument, &prevent[P_POLYGON_SPLIT], 1}, {"no-clipping", no_argument, &prevent[P_CLIPPING], 1}, {"no-duplication", no_argument, &prevent[P_DUPLICATION], 1}, diff --git a/version.hpp b/version.hpp index 6ad213c..932c0e7 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.12.7\n" +#define VERSION "tippecanoe v1.12.8\n"