Skip to content

Commit 3ed261b

Browse files
committed
Bump version to v0.2.21
1 parent e905067 commit 3ed261b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

mapshaper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7834,7 +7834,7 @@ MapShaper.getFormattedStringify = function(numArrayKeys) {
78347834

78357835

78367836
var GeoJSON = MapShaper.geojson = {};
7837-
GeoJSON.ID_FIELD = "FID";
7837+
GeoJSON.ID_FIELD = "FID"; // default field name of imported *JSON feature ids
78387838

78397839
MapShaper.importGeoJSON = function(src, opts) {
78407840
var srcObj = utils.isString(src) ? JSON.parse(src) : src,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mapshaper",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "A tool for editing vector datasets for mapping and GIS.",
55
"keywords": ["shapefile","topojson","geojson","cartography","simplification","topology","gis"],
66
"author": "Matthew Bloch <masiyou@gmail.com>",

www/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<div id="page-wrapper">
1616
<div class="g-page-header">
17-
<div class="g-mapshaper-logo">map<span class="g-logo-highlight">shaper</span> <span class="mshp-version">v. 0.2.20</span></div>
17+
<div class="g-mapshaper-logo">map<span class="g-logo-highlight">shaper</span> <span class="mshp-version">v. 0.2.21</span></div>
1818

1919
<div id="g-simplify-control-wrapper"><div id="g-simplify-control"><span class="g-label">Simplify</span>
2020
<div class="g-slider">

www/mapshaper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9673,7 +9673,7 @@ MapShaper.getFormattedStringify = function(numArrayKeys) {
96739673

96749674

96759675
var GeoJSON = MapShaper.geojson = {};
9676-
GeoJSON.ID_FIELD = "FID";
9676+
GeoJSON.ID_FIELD = "FID"; // default field name of imported *JSON feature ids
96779677

96789678
MapShaper.importGeoJSON = function(src, opts) {
96799679
var srcObj = utils.isString(src) ? JSON.parse(src) : src,

0 commit comments

Comments
 (0)