Skip to content

Commit

Permalink
version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Apr 10, 2016
1 parent 5a78ec9 commit d3a93ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion combinatorics.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
}(this, function () {
'use strict';
var version = "0.5.0";
var version = "0.5.1";
/* combinatory arithmetics */
var P = function(m, n) {
var t, p = 1;
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'jandres:js-combinatorics',
version: '0.5.0',
version: '0.5.1',
// Brief, one-line summary of the package.
summary: 'power set, combination, permutation and more in JavaScript',
// URL to the Git repository containing the source code for this package.
Expand All @@ -15,4 +15,4 @@ Package.onUse(function(api) {
api.addFiles([
'combinatorics.js'
]);
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-combinatorics",
"version": "0.5.0",
"version": "0.5.1",
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript",
"main": "combinatorics.js",
"directories": {
Expand Down

0 comments on commit d3a93ae

Please sign in to comment.