Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v0.4.3 release #646

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taffy"
version = "0.4.2"
version = "0.4.3"
authors = [
"Alice Cecile <[email protected]>",
"Johnathan Kelley <[email protected]>",
Expand Down
16 changes: 16 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 0.4.3

### Fixes

- Fix compilation error in `evenly_sized_tracks` style helper in recent versions of rustc caused by a change/regression in type
inference (#643). Note that 3rd-party code that call style helpers that take an `Into<f32>` parameter may still be affected by this issue,
but they should be able to fix on their side by clarifying the type passed in

## 0.4.2

- Fixed: single-line flex-container should clamp the line's cross-size (#638)
Expand Down Expand Up @@ -158,6 +166,14 @@ Example usage change:
- Added `total_node_count()` method to the `TaffyTree` which returns the total number of nodes in the tree.
- Added `get_disjoint_node_context_mut()` method to the `TaffyTree`. This can be used to safely get multiple mutable borrows at the same time.

## 0.3.19

### Fixes

- Fix compilation error in `evenly_sized_tracks` style helper in recent versions of rustc caused by a change/regression in type
inference (#643). Note that 3rd-party code that call style helpers that take an `Into<f32>` parameter may still be affected by this issue,
but they should be able to fix on their side by clarifying the type passed in

## 0.3.18

### Fixes
Expand Down