Skip to content

Commit

Permalink
version 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Jul 4, 2021
1 parent 3c5615c commit 9b11952
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import { Combination, Permutation } from './combinatorics.js';
You don't even have to install if you `import` from CDNs.

```javascript
import * as $C from 'https://cdn.jsdelivr.net/npm/js-combinatorics@1.5.2/combinatorics.min.js';
import * as $C from 'https://cdn.jsdelivr.net/npm/js-combinatorics@1.5.3/combinatorics.min.js';
```

Since this is an ES6 module, `type="module"` is required the `<script>` tags. of your HTML files. But you can make it globally available as follows.
Expand Down
2 changes: 1 addition & 1 deletion combinatorics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @link: http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
* @link: http://en.wikipedia.org/wiki/Factorial_number_system
*/
export declare const version = "1.5.2";
export declare const version = "1.5.3";
/**
* BigInt Workaround
*
Expand Down
2 changes: 1 addition & 1 deletion combinatorics.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @link: http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
* @link: http://en.wikipedia.org/wiki/Factorial_number_system
*/
export const version = '1.5.2';
export const version = '1.5.3';
const _BI = typeof BigInt == 'function' ? BigInt : Number;
/**
* crops BigInt
Expand Down
2 changes: 1 addition & 1 deletion combinatorics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { doesNotThrow } from "assert";
* @link: http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
* @link: http://en.wikipedia.org/wiki/Factorial_number_system
*/
export const version = '1.5.2';
export const version = '1.5.3';
/**
* BigInt Workaround
*
Expand Down
2 changes: 1 addition & 1 deletion commonjs/combinatorics.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.CartesianProduct = exports.PowerSet = exports.BaseN = exports.Combinatio
* @link: http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
* @link: http://en.wikipedia.org/wiki/Factorial_number_system
*/
exports.version = '1.5.2';
exports.version = '1.5.3';
const _BI = typeof BigInt == 'function' ? BigInt : Number;
/**
* crops BigInt
Expand Down
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": "1.5.2",
"version": "1.5.3",
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript",
"main": "combinatorics.js",
"module": "combinatorics.js",
Expand Down
2 changes: 1 addition & 1 deletion umd/combinatorics.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @link: http://www.ruby-doc.org/core-2.0/Array.html#method-i-permutation
* @link: http://en.wikipedia.org/wiki/Factorial_number_system
*/
exports.version = '1.5.2';
exports.version = '1.5.3';
const _BI = typeof BigInt == 'function' ? BigInt : Number;
/**
* crops BigInt
Expand Down

0 comments on commit 9b11952

Please sign in to comment.