Fix the tile layer version number in tile-join output

This commit is contained in:
Eric Fischer 2016-06-16 12:31:48 -07:00
parent d170ebc312
commit c40ec6c194
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 1.12.1
* Fix incorrect tile layer version numbers in tile-join output
## 1.12.0
* Fix a tile-join bug that would retain fields that were supposed to be excluded

View File

@ -166,6 +166,10 @@ bool mvt_tile::decode(std::string &message) {
layer.extent = layer_reader.get_uint32();
break;
case 15: /* version */
layer.version = layer_reader.get_uint32();
break;
case 2: /* feature */
{
protozero::pbf_reader feature_reader(layer_reader.get_message());

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.12.0\n"
#define VERSION "tippecanoe v1.12.1\n"