-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update ordered from float to `3.4.0` * Update bindgen to 0.63.0 * Update patch versions of cc and serde dependencies * Bump version to 0.4.0 * Add changelog
- Loading branch information
Showing
2 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Changelog | ||
|
||
## 0.4.0 | ||
Released: Dec 20th 2022 | ||
|
||
- Upgrade to Yoga commit [ba27f9d1ecfa7518019845b84b035d3d4a2a6658](https://github.com/facebook/yoga/commit/ba27f9d1ecfa7518019845b84b035d3d4a2a6658) (committed on: 16th Dec 2022) | ||
- Added `Static` variant to `PositionType` enum | ||
- Added bindings for gap styles: `Gutter` enum and `Node.set_gap()` and `Node.get_gap()` functions. | ||
- Updated dependencies: | ||
- `ordered_float` from `1.0.1` to `3.4.0` | ||
- `cc` from `1.0.17` to `1.0.78` | ||
- `bindgen` from `0.37.0` to `0.63.0` | ||
- `serde` and `serde_derive` from `1.0.27` to `1.0.151` | ||
|
||
|
||
## 0.3.1 | ||
Released: Jan 16th 2019 | ||
|
||
- Add `Node.mark_dirty()` | ||
- Update dependencies: | ||
- `ordered_float` from `0.5.0` to `1.0.1` | ||
|
||
|
||
## 0.3.0 | ||
Released: 16 Oct 2018 | ||
|
||
- Initial tagged version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "yoga" | |
description = "Rust bindings for Facebook's Yoga, a Flexbox layout engine" | ||
license = "MIT" | ||
repository = "https://github.com/bschwind/yoga-rs" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = ["Brian Schwind <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2021" | ||
|
@@ -13,10 +13,10 @@ default = [] | |
serde_support = ["serde", "serde_derive", "ordered-float/serde"] | ||
|
||
[build-dependencies] | ||
bindgen = "0.62.0" | ||
cc = "1.0.17" | ||
bindgen = "0.63.0" | ||
cc = "1.0.78" | ||
|
||
[dependencies] | ||
ordered-float = "1.0.1" | ||
serde = { version = "1.0.27", optional = true } | ||
serde_derive = { version = "1.0.27", optional = true } | ||
ordered-float = "3.4.0" | ||
serde = { version = "1.0.151", optional = true } | ||
serde_derive = { version = "1.0.151", optional = true } |