Skip to content

Commit

Permalink
bump to 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Aug 23, 2011
1 parent 056b663 commit 782c3fc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
27 changes: 19 additions & 8 deletions package.json
@@ -1,20 +1,27 @@
{
"name" : "mapnik",
"version" : "0.5.3",
"main" : "./lib/mapnik.js",
"description" : "C++ map rendering library for node",
"keywords" : ["map", "graphics", "canvas", "tile"],
"description" : "Tile rendering library for node",
"url" : "http://github.com/mapnik/node-mapnik",
"version" : "0.5.4",
"main" : "./lib/mapnik.js",
"keywords" : ["map", "graphics", "canvas", "tile", "mapnik", "carto"],
"repositories" : [
{
"type" : "git",
"url" : "git://github.com/mapnik/node-mapnik.git"
}
],
"author" : "Dane Springmeyer <dane@dbsgeo.com>",
"contributors" : [],
"licenses" : ["BSD"],
"author": {
"name" : "Dane Springmeyer",
"url" : "http://mapbox.com/",
"email" : "dane@dbsgeo.com"
},
"contributors" : ["Konstantin Käfer"],
"licenses" : [{"type": "BSD"}],
"dependencies" : {},
"devDependencies": {
"expresso": "0.8.x"
},
"bin" : {
"mapnik-inspect.js" : "./bin/mapnik-inspect.js",
"mapnik-render.js" : "./bin/mapnik-render.js"
Expand All @@ -24,5 +31,9 @@
"src": "src"
},
"engines" : { "node": ">= 0.2.3" },
"scripts" : {"install": "node-waf -v configure build"}
"scripts" : {"install": "node-waf -v configure build"},
"scripts": {
"pretest" : "npm install --dev",
"test" : "make test"
}
}
2 changes: 1 addition & 1 deletion src/node_mapnik.cpp
Expand Up @@ -93,7 +93,7 @@ extern "C" {
MemoryDatasource::Initialize(target);

// node-mapnik version
target->Set(String::NewSymbol("version"), String::New("0.5.3"));
target->Set(String::NewSymbol("version"), String::New("0.5.4"));

// versions of deps
Local<Object> versions = Object::New();
Expand Down

0 comments on commit 782c3fc

Please sign in to comment.