From faa12473ef528f8cc802886c81e77baa881c289b Mon Sep 17 00:00:00 2001 From: Ian Storm Taylor Date: Mon, 27 Feb 2017 12:58:02 -0800 Subject: [PATCH] update history --- History.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/History.md b/History.md index 18a07c333..a2dd5740c 100644 --- a/History.md +++ b/History.md @@ -2,6 +2,25 @@ This document maintains a list of changes to Slate with each new version. Until `1.0.0` is released, breaking changes will be added as minor version bumps, and non-breaking changes won't be accounted for since the library is moving quickly. +--- + +### `0.17.0` — February 27, 2017 + +###### DEPRECATION CHANGES + +- **Selection methods and transforms have been refactored!** Previously there were many inconsistencies in the naming and handling of selection changes. This has all been cleaned up, but in the process some methods have been deprecated. The full list, along with the new counterpart is: + - `moveToOffsets` -> `moveOffsetsTo` + - `moveForward` -> `move` + - `moveBackward` -> `move` + - `moveAnchorOffset` -> `moveAnchor` + - `moveFocusOffset` -> `moveFocus` + - `moveStartOffset` -> `moveStart` + - `moveEndOffset` -> `moveEnd` + - `extendForward` -> `extend` + - `extendBackward` -> `extend` + - `unset` -> `deselect` + + ---