From c5706f6d218db8f1fe121fb1deed8b51787c86d3 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 30 Jul 2021 16:34:48 +0200 Subject: [PATCH 1/3] :boom: refactor!: Remove default export. BREAKING CHANGE: The default export is gone. --- src/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.js b/src/index.js index 4ca8e0d..a298974 100644 --- a/src/index.js +++ b/src/index.js @@ -2,9 +2,6 @@ import DONE_ITERATOR from './DONE_ITERATOR.js'; import withMethods from './withMethods.js'; import withoutMethods from './withoutMethods.js'; -/* eslint import/no-anonymous-default-export: [2, {"allowObject": true}] */ -export default withoutMethods; - const {empty, from, isEmpty, push, peek, pop, iter} = withoutMethods; export { From 1f98a90bc3a2eab6f96ff18adc5dea113dfcecaa Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 30 Jul 2021 16:36:10 +0200 Subject: [PATCH 2/3] :books: docs(README): Add emoji in title. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2ff026f..bd1223b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +:icecream: [@functional-data-structure/persistent-stack](https://functional-data-structure.github.io/persistent-stack) == From b91294e66ff92154717c1f2d1ba1b5d4403a18f6 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 30 Jul 2021 16:36:49 +0200 Subject: [PATCH 3/3] :hatching_chick: release: Bumping to v1.0.0. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 07bf366..3029ce6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@functional-data-structure/persistent-stack", "description": "Persistent stack data structures for JavaScript", - "version": "0.0.1", + "version": "1.0.0", "license": "AGPL-3.0", "author": "make-github-pseudonymous-again", "homepage": "https://functional-data-structure.github.io/persistent-stack",