-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from kartena/release-1.0.1
# Version 1.0.1
- Loading branch information
Showing
4 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
{ | ||
"name": "Proj4Leaflet", | ||
"version": "0.7.2", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/kartena/Proj4Leaflet", | ||
"authors": [ | ||
"Per Liedman <[email protected]> (https://github.com/perliedman/)" | ||
"Per Liedman <[email protected]> (https://github.com/perliedman/)", | ||
"Peter Thorin (https://github.com/pthorin/)", | ||
"Semone Kallin Thander (https://github.com/semone/)", | ||
"S. Andrew Sheppard (https://github.com/sheppard)", | ||
"Leigh Hunt (https://github.com/leighghunt/)", | ||
"Andris Nolendorfs (https://github.com/theashyster)", | ||
"Vladimir Agafonkin (https://github.com/mourner)", | ||
"Juuso Lehtinen (https://github.com/jleh)", | ||
"Mattias Bengtsson (https://github.com/moonlite/)", | ||
"Denis Rykov (http://github.com/drnextgis) ", | ||
"Jose manuel Vivó Arnal (Chema) (http://github.com/jmvivo) ", | ||
"Daniel Garcia (http://github.com/keyjote) ", | ||
"Mathieu Leplatre (https://github.com/leplatrem)", | ||
"Benny Lichtner (http://github.com/bennlich) ", | ||
"Christopher Fredén (https://github.com/icetan/)", | ||
"dpzaba (http://github.com/dpzaba) ", | ||
"Edward Mac Gillavry (http://github.com/emacgillavry) ", | ||
"Emil Goude (http://github.com/Stockholmsnovis) ", | ||
"Simon Legner (http://github.com/simon04) ", | ||
"Tom Blackmore (http://github.com/tablackmore) ", | ||
"Fabien NICOLLET (https://github.com/fnicollet)" | ||
], | ||
"description": "Smooth Proj4js integration with Leaflet", | ||
"moduleType": [ | ||
|
@@ -28,7 +48,6 @@ | |
"tests" | ||
], | ||
"dependencies": { | ||
"proj4": "^2.0.0", | ||
"leaflet": "~0.7.2" | ||
"proj4": "^2.3.14" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "proj4leaflet", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Smooth Proj4js integration with Leaflet", | ||
"main": "src/proj4leaflet.js", | ||
"directories": { | ||
|
@@ -22,15 +22,26 @@ | |
], | ||
"author": "Per Liedman <[email protected]> (https://github.com/perliedman/)", | ||
"contributors": [ | ||
"Mattias Bengtsson (https://github.com/moonlite/)", | ||
"Christopher Fredén (https://github.com/icetan/)", | ||
"Peter Thorin (https://github.com/pthorin/)", | ||
"Semone Kallin Thander (https://github.com/semone/)", | ||
"S. Andrew Sheppard (https://github.com/sheppard)", | ||
"Leigh Hunt (https://github.com/leighghunt/)", | ||
"Andris Nolendorfs (https://github.com/theashyster)", | ||
"Vladimir Agafonkin (https://github.com/mourner)", | ||
"Juuso Lehtinen (https://github.com/jleh)", | ||
"Mattias Bengtsson (https://github.com/moonlite/)", | ||
"Denis Rykov (http://github.com/drnextgis) ", | ||
"Jose manuel Vivó Arnal (Chema) (http://github.com/jmvivo) ", | ||
"Daniel Garcia (http://github.com/keyjote) ", | ||
"Mathieu Leplatre (https://github.com/leplatrem)", | ||
"fnicollet (https://github.com/fnicollet)", | ||
"Semone Kallin Thander (https://github.com/semone/)" | ||
"Benny Lichtner (http://github.com/bennlich) ", | ||
"Christopher Fredén (https://github.com/icetan/)", | ||
"dpzaba (http://github.com/dpzaba) ", | ||
"Edward Mac Gillavry (http://github.com/emacgillavry) ", | ||
"Emil Goude (http://github.com/Stockholmsnovis) ", | ||
"Simon Legner (http://github.com/simon04) ", | ||
"Tom Blackmore (http://github.com/tablackmore) ", | ||
"Fabien NICOLLET (https://github.com/fnicollet)" | ||
], | ||
"license": "BSD-2-Clause", | ||
"bugs": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
if [ -f contributors ]; | ||
then | ||
rm contributors | ||
fi | ||
for x | ||
in `curl -K contributors.curl | grep -E -w 'url' | grep -o -E 'https[^"]+'` | ||
do | ||
curl -XGET --url $x -o -| grep -E 'name|html_url' >> contributors | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-XGET | ||
--url "https://api.github.com/repos/kartena/Proj4Leaflet/contributors?anon=0" | ||
-o - |