Skip to content

Commit

Permalink
# Version 1.0.1
Browse files Browse the repository at this point in the history
* Updated bower.json to 1.0.1 and current authors.
* Updated package.json to 1.0.1 and contributors.
* Added util script for getting contributors from github.
  • Loading branch information
Peter Thorin committed Jan 26, 2017
1 parent 23c55de commit d981b1b
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 9 deletions.
27 changes: 23 additions & 4 deletions bower.json
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 <per.liedman@kartena.se> (https://github.com/perliedman/)"
"Per Liedman <per.liedman@kartena.se> (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": [
Expand All @@ -28,7 +48,6 @@
"tests"
],
"dependencies": {
"proj4": "^2.0.0",
"leaflet": "~0.7.2"
"proj4": "^2.3.14"
}
}
21 changes: 16 additions & 5 deletions package.json
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": {
Expand All @@ -22,15 +22,26 @@
],
"author": "Per Liedman <per.liedman@kartena.se> (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": {
Expand Down
9 changes: 9 additions & 0 deletions util/contrib.sh
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
3 changes: 3 additions & 0 deletions util/contributors.curl
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 -

0 comments on commit d981b1b

Please sign in to comment.