From 77728d3d2acd6334be2323809c1c11def00b60b5 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Mon, 2 Jan 2023 13:56:06 +0000 Subject: [PATCH] Update changelog with new GridLine type --- RELEASES.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index c3e92e967..af9b1a56a 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -6,12 +6,13 @@ - `experimental_grid` feature named to just `grid` - `grid` feature enabled by default +- `GridPlacement::Line` now stores a `GridLine` newtype wrapper around an `i16` rather than a raw `i16`. If you are using the style helpers then this change will not affect you. +- *BREAKING:* `Position` is now renamed to `Inset` and is now in line with [CSS inset specs](https://developer.mozilla.org/en-US/docs/Web/CSS/inset) +- *BREAKING:* `PositionType` is now renamed to `Position` and is now in line with [CSS position specs](https://developer.mozilla.org/en-US/docs/Web/CSS/position) ### Fixes - Flexbox nodes sized under a min-content constraint now size correctly (#291) -- *BREAKING:* `Position` is now renamed to `Inset` and is now in line with [CSS inset specs](https://developer.mozilla.org/en-US/docs/Web/CSS/inset) -- *BREAKING:* `PositionType` is now renamed to `Position` and is now in line with [CSS position specs](https://developer.mozilla.org/en-US/docs/Web/CSS/position) ### Removed