From 4d3acc3eed4fb5083a5ae8e9a5a5f04702105478 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:09:55 +0200 Subject: [PATCH 1/2] :books: docs(README): Add missing import statement to code sample. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 333c44f..fe59c17 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,9 @@ See [docs](https://computational-combinatorics.github.io/n-combinations/index.ht ```js import {combinations} from '@combinatorics/n-combinations'; - combinations("ABCD", 2); // AB AC AD BC BD CD + +import {range} from '@iterable-iterator/range'; combinations(range(4), 3); // 012 013 023 123 ``` From 826f17766c34a339a32d51a1b29498418ce3931a 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:10:29 +0200 Subject: [PATCH 2/2] :hatching_chick: release: Bumping to v0.1.1. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89f4031..e9ce030 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@combinatorics/n-combinations", "description": "Set n-combinations for JavaScript", - "version": "0.1.0", + "version": "0.1.1", "license": "AGPL-3.0", "author": "make-github-pseudonymous-again", "homepage": "https://computational-combinatorics.github.io/n-combinations",