From 7632d4d0e59e5afe5cba0d1bfcd394fb0cfd5d49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 May 2021 15:35:42 -0400 Subject: [PATCH] Version Packages (#4259) Co-authored-by: github-actions[bot] --- .changeset/introduce-android-support.md | 9 --------- packages/slate-react/CHANGELOG.md | 10 ++++++++++ packages/slate-react/package.json | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 .changeset/introduce-android-support.md 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",