From 52b2dadb5f509164f6238d0717e4d7f9adb10f17 Mon Sep 17 00:00:00 2001 From: "iago.coelho" Date: Tue, 11 Jan 2022 17:35:18 -0300 Subject: [PATCH 1/2] Upgrade to use React 17.0.2 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index bb30a7e..a34aafe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-hooks-helper", - "version": "1.6.0", + "version": "1.7.0", "description": "A custom React Hooks library that gives you custom hooks for your code.", "main": "dist/react-hooks-helper.js", "umd:main": "dist/react-hooks-helper.umd.js", @@ -42,8 +42,8 @@ "jest": "^23.6.0", "jest-dom": "^3.0.0", "microbundle": "^0.9.0", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", "react-testing-library": "^5.5.3", "rimraf": "^2.6.2" }, From 33b894d1c9caf6c868c95796e810facfd22a5867 Mon Sep 17 00:00:00 2001 From: "iago.coelho" Date: Tue, 11 Jan 2022 17:42:57 -0300 Subject: [PATCH 2/2] Include upgrade to React 17.0.2 on peerDependencies --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a34aafe..df3b48e 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,6 @@ "rimraf": "^2.6.2" }, "peerDependencies": { - "react": "^16.8.0" + "react": "^17.0.2" } }