Skip to content

Commit c14a177

Browse files
authored
Prepare for 0.6.0 release (#719)
1 parent c9d6a7b commit c14a177

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taffy"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = [
55
"Alice Cecile <alice.i.cecile@gmail.com>",
66
"Johnathan Kelley <jkelleyrtp@gmail.com>",

RELEASES.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Release Notes
22

3+
## 0.6.0
4+
5+
### Highlights
6+
7+
- The `Style` struct has been "traitified". This supports Taffy's integration in Servo and generally makes Taffy more flexible. The
8+
`Style` struct still exists and implements the new traits so existing uses of Taffy will continue to work as before.
9+
- The `box-sizing` style is supported
10+
- Computed margins are output in `Layout`
11+
12+
### Fixes
13+
14+
- Fix `print_tree()` when rounding is disabled (#680)
15+
- Absolute Insets should be resolved against the container size minus border (#666)
16+
- Fix flooring hypothetical_main_size by computed min size (#689)
17+
- Fix flex line cross-size determination (#690)
18+
- Fix panics in the grid algorithm (#691)
19+
- Fix resolving flexible lengths (WPT css/flexbox-multiline-min-max test) (#692)
20+
- Fix wrapping when a max main size style is present (#694)
21+
- Fix case where Taffy allowed margins to collapse through an element when it shouldn't have (#695)
22+
23+
### Added
24+
25+
- Legacy text align (for laying out `<center>` and `<div align="..">`) is supported
26+
- Add `is_table` for block items (#701)
27+
- Impl `Debug` and `Clone` for `Cache` (#688)
28+
- Implement `Debug` and `PartialEq` for tree types (#697)
29+
330
## 0.5.2
431

532
- Fix block stretch sizing (don't always apply stretch sizing to block containers) (#674)

0 commit comments

Comments
 (0)