From 9bf5fe6ad3c62dc34caa03f492b08594e742c38b Mon Sep 17 00:00:00 2001 From: Nik Mostovoy Date: Mon, 28 Nov 2022 23:25:29 +0000 Subject: [PATCH] bump version --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d690849..9978925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 9.0.0 +- Moved use-debounce to support modules see [issue](https://github.com/xnimorz/use-debounce/issues/147) Thank to [@matewilk](https://github.com/matewilk) +- _breaking change_ The path to `dist/index.js` is changed. Now it's `dist/index.cjs`. + ## 8.0.4 - Changes types for `useDebouncedCallback` args: https://github.com/xnimorz/use-debounce/pull/140 Thanks to [@sarunast](https://github.com/sarunast) diff --git a/package.json b/package.json index 079dbf6..baadaf4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "use-debounce", - "version": "8.0.4", + "version": "9.0.0", "description": "Debounce hook for react", "type": "module", "source": "src/index.ts",