From 96f37f45652d220d85adac17b78e5c6ad0cc119c Mon Sep 17 00:00:00 2001 From: Nitzan Nashi Date: Wed, 27 May 2020 10:50:09 +0200 Subject: [PATCH 1/5] Add Article to Readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7bb24f4..19adf76 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,6 @@ export const Example = () => { - `timeout?: number` - number of milliseconds to detect double-click event [0]: https://reactjs.org/docs/hooks-intro.html + +### Article +Read more and Learn how and why we created the hook [here](https://medium.com/@nitzan.nashi/repeatable-double-click-and-hybrid-clicks-solution-with-usedoubleclick-hook-c6c64449abf7?sk=ed5c9edf3017fb2b7b277b76217fc393) From 39c471f4e5325901bc7fb5f1bd84cacc86d09af2 Mon Sep 17 00:00:00 2001 From: Nitzan Nashi Date: Wed, 27 May 2020 10:57:36 +0200 Subject: [PATCH 2/5] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 19adf76..9fa4823 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # useDoubleClick [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,6 +42,4 @@ export const Example = () => { - `timeout?: number` - number of milliseconds to detect double-click event [0]: https://reactjs.org/docs/hooks-intro.html - -### Article -Read more and Learn how and why we created the hook [here](https://medium.com/@nitzan.nashi/repeatable-double-click-and-hybrid-clicks-solution-with-usedoubleclick-hook-c6c64449abf7?sk=ed5c9edf3017fb2b7b277b76217fc393) +[1]: https://medium.com/@nitzan.nashi/repeatable-double-click-and-hybrid-clicks-solution-with-usedoubleclick-hook-c6c64449abf7?sk=ed5c9edf3017fb2b7b277b76217fc393 From 73e52d6aac756d16b0e41c70e58a727ef5ffe85a Mon Sep 17 00:00:00 2001 From: Nitzan Nashi Date: Wed, 27 May 2020 10:58:01 +0200 Subject: [PATCH 3/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9fa4823..35f9e2e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # useDoubleClick [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 From 006b4ee292daecf55d82c9b23205936f257080c8 Mon Sep 17 00:00:00 2001 From: Nitzan Nashi Date: Wed, 27 May 2020 11:03:55 +0200 Subject: [PATCH 4/5] Update README.md Co-authored-by: Bogdan Plieshka --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 35f9e2e..e1f2da5 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [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 From e84434a1aeb8ab59d7a3eff4ccf87e6afd12fc02 Mon Sep 17 00:00:00 2001 From: Nitzan Nashi Date: Wed, 27 May 2020 11:14:27 +0200 Subject: [PATCH 5/5] v1.0.0 --- CHANGELOG.md | 4 ++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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/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": {