From d4b54b595440ca5910ead404f6749cf150f1ad3a Mon Sep 17 00:00:00 2001 From: Jeremy Deutsch Date: Wed, 17 Apr 2019 12:16:11 -0700 Subject: [PATCH] Lower react peer dependency to ^16.8.3 (#1242) This PR lowers the `react` peer dependency from `^16.8.4` to `^16.8.3`. This is useful for React Native users, since the `react` peer dependency in `react-native` is [exactly `16.8.3`.](https://github.com/facebook/react-native/blob/master/package.json#L86) This should have no effect on existing v7 users, but does open up new users to DevTools potentially crashing if they aren't on `react@^16.8.4`. --- README.md | 2 +- package.json | 2 +- website/versioned_docs/version-7.x/introduction/quick-start.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37af2c785..b5a1e1cb4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Performant and flexible. ## Installation -React Redux requires **React 16.8.4 or later.** +React Redux requires **React 16.8.3 or later.** ``` npm install --save react-redux diff --git a/package.json b/package.json index a840b37ca..f9c87621d 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "coverage": "codecov" }, "peerDependencies": { - "react": "^16.8.4", + "react": "^16.8.3", "redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0" }, "dependencies": { diff --git a/website/versioned_docs/version-7.x/introduction/quick-start.md b/website/versioned_docs/version-7.x/introduction/quick-start.md index b0e118caa..e5bb89aa8 100644 --- a/website/versioned_docs/version-7.x/introduction/quick-start.md +++ b/website/versioned_docs/version-7.x/introduction/quick-start.md @@ -12,7 +12,7 @@ original_id: quick-start ## Installation -React Redux 7.x requires **React 16.8.4 or later.** +React Redux 7.x requires **React 16.8.3 or later.** To use React Redux with your React app: