diff --git a/.changeset/introduce-android-support.md b/.changeset/introduce-android-support.md deleted file mode 100644 index 8ed801dde..000000000 --- a/.changeset/introduce-android-support.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'slate-react': minor ---- - -Added support for Android devices using a `MutationObserver` based reconciliation layer. - -Bugs should be expected; translating mutations into a set of operations that need to be reconciled onto the Slate model is not an absolute science, and requires a lot of guesswork and handling of edge cases. There are still edge cases that aren't being handled. - -This reconciliation layer aims to support Android 10 and 11. Earlier versions of Android work to a certain extent, but have more bugs and edge cases that currently aren't well supported. diff --git a/packages/slate-react/CHANGELOG.md b/packages/slate-react/CHANGELOG.md index e1c7827ca..63cc0d725 100644 --- a/packages/slate-react/CHANGELOG.md +++ b/packages/slate-react/CHANGELOG.md @@ -1,5 +1,15 @@ # slate-react +## 0.64.0 + +### Minor Changes + +- [#4257](https://github.com/ianstormtaylor/slate/pull/4257) [`4f0d1120`](https://github.com/ianstormtaylor/slate/commit/4f0d1120d46d1024d94e3c2742026f6c54357e1f) Thanks [@clauderic](https://github.com/clauderic)! - Added support for Android devices using a `MutationObserver` based reconciliation layer. + + Bugs should be expected; translating mutations into a set of operations that need to be reconciled onto the Slate model is not an absolute science, and requires a lot of guesswork and handling of edge cases. There are still edge cases that aren't being handled. + + This reconciliation layer aims to support Android 10 and 11. Earlier versions of Android work to a certain extent, but have more bugs and edge cases that currently aren't well supported. + ## 0.63.0 ### Patch Changes diff --git a/packages/slate-react/package.json b/packages/slate-react/package.json index 21e1412fc..97ef6ac85 100644 --- a/packages/slate-react/package.json +++ b/packages/slate-react/package.json @@ -1,7 +1,7 @@ { "name": "slate-react", "description": "Tools for building completely customizable richtext editors with React.", - "version": "0.63.0", + "version": "0.64.0", "license": "MIT", "repository": "git://github.com/ianstormtaylor/slate.git", "main": "dist/index.js",