diff --git a/CHANGELOG.md b/CHANGELOG.md index 51925ea..2454e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.0.0] - 27.05.2020 + +Added article + ## [1.0.0-alpha.1] - 14.05.2020 Export `d.ts` files diff --git a/README.md b/README.md index 7bb24f4..e1f2da5 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [React hook][0] for continuous double-clicks and combining click and double-click events +See [Repeatable double-click and hybrid clicks solution with useDoubleClick hook][1] article for more details. + ### Install ```shell @@ -42,3 +44,4 @@ export const Example = () => { - `timeout?: number` - number of milliseconds to detect double-click event [0]: https://reactjs.org/docs/hooks-intro.html +[1]: https://medium.com/@nitzan.nashi/repeatable-double-click-and-hybrid-clicks-solution-with-usedoubleclick-hook-c6c64449abf7?sk=ed5c9edf3017fb2b7b277b76217fc393 diff --git a/package-lock.json b/package-lock.json index 72f1bdb..e6e00b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@zattoo/use-double-click", - "version": "1.0.0-alpha.1", + "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b6d1638..29e89cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zattoo/use-double-click", - "version": "1.0.0-alpha.1", + "version": "1.0.0", "description": "React hook for continuous double-clicks and combining click and double-click events", "homepage": "https://github.com/zattoo/use-double-click", "repository": {