From 47409ac4b06497fa09d5a59ed60b885e8e107643 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Wed, 5 May 2021 17:02:40 +0200 Subject: [PATCH 1/2] :sparkles: feat: Export indices generator. --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index c1c30eb..4fbcd90 100644 --- a/src/index.js +++ b/src/index.js @@ -1 +1,2 @@ +export {default as _combinations} from './_combinations.js'; export {default as combinations} from './combinations.js'; From 2c14f26f76862d53f870bdcf639866f7bbde511f Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Wed, 5 May 2021 17:03:11 +0200 Subject: [PATCH 2/2] :hatching_chick: release: Bumping to v0.1.0. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ccbe9e7..89f4031 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@combinatorics/n-combinations", "description": "Set n-combinations for JavaScript", - "version": "0.0.4", + "version": "0.1.0", "license": "AGPL-3.0", "author": "make-github-pseudonymous-again", "homepage": "https://computational-combinatorics.github.io/n-combinations",