diff --git a/CHANGELOG.md b/CHANGELOG.md index 101d2a26..a5aa4398 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +v1.1.0 +------ + +- Add support for React 16 and onwards by depending on `prop-types` and `create-react-class` (#181 @mikecousins) +- Allow setting contents with a Quill Delta via the `value` prop (#101) +- Add onFocus/onBlur props (#110) +- Add tabindex support (#232) + v1.0.0 ------ This release supports Quill v1.0.0+. ⚠️ There are many breaking changes, so refer to the documentation for information on how to migrate your application. diff --git a/README.md b/README.md index bf2ab1d9..212760c0 100644 --- a/README.md +++ b/README.md @@ -754,6 +754,12 @@ Please check the browser support table for the upstream [Quill](https://github.c ## Changelog +### v1.1.0 +- Add support for React 16 and onwards by depending on `prop-types` and `create-react-class` (#181 @mikecousins) +- Allow setting contents with a Quill Delta via the `value` prop (#101) +- Add onFocus/onBlur props (#110) +- Add tabindex support (#232) + #### v1.0.0 This release adds support for Quill v1.0.0+. ⚠️ There are many breaking changes, both in Quill and in ReactQuill. See [Upgrading to React-Quill v1.0.0](#upgrading-to-react-quill-v100). diff --git a/package.json b/package.json index 88a86b8a..86b12d1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-quill", - "version": "1.0.0", + "version": "1.1.0", "description": "The Quill rich-text editor as a React component.", "author": "zenoamaro ", "homepage": "https://github.com/zenoamaro/react-quill",