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 0.8.0 release #808

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## 0.8.0

The big feature in this release is support for `calc()` values in the low-level API.
To use this API pass a type-erased point (`*const ()`) to the value construction

As part of implementing this support we have also changed the representation of the
`LengthPercentage`, `LengthPercentageAuto`, `Dimension`, `MinTrackSizingFunction`, and

Check failure on line 9 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

Trailing spaces

CHANGELOG.md:9:87 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md009.md
`MaxTrackSizingFunction` types. These are now represented as a tagged pointer rather
than an enum.


Check failure on line 13 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

Multiple consecutive blank lines

CHANGELOG.md:13 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md012.md
### Fixed

- Fix infinite loop due to float precision in grid layout maximise tracks step (#792)

## 0.7.6

### Fixed

- Fix infinite loop due to float precision in grid layout maximise tracks step (#792)

## 0.7.5

### Fixed

- Grid: only stretch auto tracks if content-alignment is stretch (#783)

## 0.7.4

### Fixed

- Fix detailed grid info for empty grid (#782)

## 0.7.3

### Fixed
Expand Down
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.7.3"
version = "0.8.0"
authors = [
"Alice Cecile <alice.i.cecile@gmail.com>",
"Johnathan Kelley <jkelleyrtp@gmail.com>",
Expand Down
Loading