Skip to content

Commit

Permalink
10.03
Browse files Browse the repository at this point in the history
  • Loading branch information
xnimorz committed Aug 17, 2024
1 parent 460b1df commit 453490e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 10.0.3
- Removed `peerDependency` part from `package.json` as NPM cannot correctly resolve `peerDependency` for beta and rc versions: see https://stackoverflow.com/questions/67934358/npm-including-all-range-of-pre-release-when-defining-peer-dependency for context

## 10.0.2

- Fixed: `isPending` does not reset the state if the tracked value hasn't changed.. See https://github.com/xnimorz/use-debounce/issues/178
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "use-debounce",
"version": "10.0.2",
"version": "10.0.3",
"description": "Debounce hook for react",
"source": "src/index.ts",
"main": "dist/index.js",
Expand Down Expand Up @@ -46,7 +46,7 @@
"dist"
],
"peerDependencies": {
"react": ">=16.8.0"
"react": "*"
},
"homepage": "https://github.com/xnimorz/use-debounce#readme",
"devDependencies": {
Expand Down

0 comments on commit 453490e

Please sign in to comment.