Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisveness committed Apr 22, 2020
1 parent 26b05fa commit a318f93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [2.2.1] - 2020-04-22

### Fixed

Expand All @@ -10,6 +10,7 @@
- Fix (rare) rounding error issue in intersection() [#71]
- Fix (edgecase) gross error in MGRS -> UTM conversion [#73]
- Return 0 rather than NaN for cross-track / along-track distance of coincident points [#76]
- Remove tests from published package

## [2.2.0] - 2019-07-08

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The library can be used in the browser by taking a local copy, or loading it fro
```html
<!doctype html><title>geodesy example</title><meta charset="utf-8">
<script type="module">
import LatLon from 'https://cdn.jsdelivr.net/npm/geodesy@2.2.0/latlon-spherical.min.js';
import LatLon from 'https://cdn.jsdelivr.net/npm/geodesy@2.2.1/latlon-spherical.min.js';
const p1 = new LatLon(50.06632, -5.71475);
const p2 = new LatLon(58.64402, -3.07009);
Expand Down
11 changes: 2 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
},
"keywords": [ "geodesy", "latitude", "longitude", "distance", "bearing", "destination", "haversine", "vincenty", "rhumb", "ellipsoid", "datum", "reference frame", "TRF", "wgs84", "utm", "mgrs" ],
"author": "Chris Veness",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=8.0.0"
},
"files": [ "dms.js", "latlon-*.js", "mgrs.js", "osgridref.js", "utm.js", "vector3d.js" ],
"bugs": "https://github.com/chrisveness/geodesy/issues",
"scripts": {
"test": "mocha --exit test/*.js",
Expand Down Expand Up @@ -67,14 +68,6 @@
"strict": [ "error", "global" ]
}
},
"files": [
"dms.js",
"latlon-*.js",
"mgrs.js",
"osgridref.js",
"utm.js",
"vector3d.js"
],
"jsdoc": {
"plugins": [ "plugins/markdown" ],
"markdown": { "idInHeadings": true }
Expand Down

0 comments on commit a318f93

Please sign in to comment.