Skip to content

Commit 2476ee0

Browse files
committed
Prepare for 0.14.1
1 parent 6513d8c commit 2476ee0

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.14.1
2+
3+
* Fixes a potential crash with QGIS-generated GPX files.
4+
15
## 0.14.0
26

37
* Now includes TimeStamp property from Placemarks, if it exists.

LICENSE

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2-
Version 2, December 2004
1+
Copyright (c) 2016 Mapbox All rights reserved.
32

4-
Copyright (C) 2012 Tom MacWright
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
54

6-
Everyone is permitted to copy and distribute verbatim or modified
7-
copies of this license document, and changing it is allowed as long
8-
as the name is changed.
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
96

10-
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
7+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
128

13-
0. You just DO WHAT THE FUCK YOU WANT TO.
9+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

component.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.8.0",
2+
"version": "0.14.1",
33
"scripts": [
44
"togeojson.js"
55
],
@@ -19,4 +19,4 @@
1919
"description": "convert KML and GPX to GeoJSON",
2020
"name": "togeojson",
2121
"license": "BSD"
22-
}
22+
}

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "togeojson",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"description": "convert KML and GPX to GeoJSON",
55
"main": "togeojson.js",
66
"directories": {
@@ -12,12 +12,12 @@
1212
"browser": "browserify -t brfs test/index.js > test/bundle.js"
1313
},
1414
"devDependencies": {
15-
"brfs": "~0.2.1",
16-
"coveralls": "~2.10.0",
17-
"eslint": "^1.2.1",
18-
"glob": "^4.2.1",
19-
"istanbul": "~0.2.11",
20-
"tape": "~3.0.3"
15+
"brfs": "~1.4.3",
16+
"coveralls": "~2.11.12",
17+
"eslint": "^3.3.0",
18+
"glob": "^7.0.5",
19+
"istanbul": "~0.4.4",
20+
"tape": "~4.6.0"
2121
},
2222
"bin": {
2323
"togeojson": "togeojson"
@@ -34,11 +34,11 @@
3434
"brfs"
3535
]
3636
},
37-
"license": "BSD",
37+
"license": "BSD-2-Clause",
3838
"dependencies": {
3939
"xmldom": "~0.1.19",
40-
"concat-stream": "~1.4.5",
41-
"minimist": "0.0.8"
40+
"concat-stream": "~1.5.1",
41+
"minimist": "1.2.0"
4242
},
4343
"keywords": [
4444
"kml",

0 commit comments

Comments
 (0)