Skip to content

Commit

Permalink
Bump revision number.
Browse files Browse the repository at this point in the history
  • Loading branch information
prettymuchbryce committed Jan 12, 2014
1 parent 868e975 commit 55402fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion bin/easystar-0.1.5.js → bin/easystar-0.1.6.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,4 +542,9 @@ EasyStar.js = function() {
var getDistance = function(x1,x2,y1,y2) {
return Math.floor(Math.abs(x2-x1) + Math.abs(y2-y1));
};
}
}
if (typeof define === "function" && define.amd) {
define("easystar", [], function() {
return EasyStar;
});
}
2 changes: 1 addition & 1 deletion bin/easystar-0.1.5.min.js → bin/easystar-0.1.6.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easystarjs",
"version": "0.1.5",
"version": "0.1.6",
"description": "Asynchronous A* Pathfinding API",
"keywords": ["A*", "pathfinding", "grid", "easystar"],
"homepage": "http://www.easystarjs.com",
Expand All @@ -10,7 +10,7 @@
"email": "brycedneal@gmail.com",
"url": "http://bryce.is"
},
"main": "./bin/easystar-0.1.5",
"main": "./bin/easystar-0.1.6",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.0",
Expand Down

0 comments on commit 55402fd

Please sign in to comment.