diff --git a/README.md b/README.md index 26c4e256..8da3e882 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ parse('

Hello, World!

'); // React.createElement('p', {}, 'Hello, World!') - [htmlparser2](#htmlparser2) - [trim](#trim) - [Migration](#migration) + - [v2.0.0](#v200) - [v1.0.0](#v100) - [FAQ](#faq) - [Is this XSS safe?](#is-this-xss-safe) @@ -370,6 +371,10 @@ parse('

', { trim: true }); // React.createElement('p') ## Migration +### v2.0.0 + +Since [v2.0.0](https://github.com/remarkablemark/html-react-parser/releases/tag/v2.0.0), Internet Explorer (IE) is no longer supported. + ### v1.0.0 TypeScript projects will need to update the types in [v1.0.0](https://github.com/remarkablemark/html-react-parser/releases/tag/v1.0.0). diff --git a/package.json b/package.json index 33c776b6..c4d8f543 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ ], "dependencies": { "domhandler": "4.3.1", - "html-dom-parser": "1.2.0", + "html-dom-parser": "2.0.0", "react-property": "2.0.0", "style-to-js": "1.1.1" },