Skip to content

Commit a84ea45

Browse files
committed
VERSION 0.3.0
1 parent bf92a74 commit a84ea45

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

combinatorics.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
(function(global) {
1313
'use strict';
1414
if (global.Combinatorics) return;
15+
var version = "0.3.0";
1516
/* combinatory arithmetics */
1617
var P = function(m, n) {
1718
var t, p = 1;
@@ -343,6 +344,7 @@
343344
combination: combination,
344345
permutation: permutation,
345346
permutationCombination: permutationCombination,
346-
power: power
347+
power: power,
348+
VERSION: version
347349
});
348350
})(this);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-combinatorics",
3-
"version": "0.2.5",
3+
"version": "0.3.0",
44
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript",
55
"main": "combinatorics.js",
66
"directories": {

0 commit comments

Comments
 (0)