Skip to content

Commit 5f698b2

Browse files
authored
Release/0.4.0 (#56)
* 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
1 parent a88bb7c commit 5f698b2

File tree

2 files changed

+33
-6
lines changed

2 files changed

+33
-6
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog
2+
3+
## 0.4.0
4+
Released: Dec 20th 2022
5+
6+
- Upgrade to Yoga commit [ba27f9d1ecfa7518019845b84b035d3d4a2a6658](https://github.com/facebook/yoga/commit/ba27f9d1ecfa7518019845b84b035d3d4a2a6658) (committed on: 16th Dec 2022)
7+
- Added `Static` variant to `PositionType` enum
8+
- Added bindings for gap styles: `Gutter` enum and `Node.set_gap()` and `Node.get_gap()` functions.
9+
- Updated dependencies:
10+
- `ordered_float` from `1.0.1` to `3.4.0`
11+
- `cc` from `1.0.17` to `1.0.78`
12+
- `bindgen` from `0.37.0` to `0.63.0`
13+
- `serde` and `serde_derive` from `1.0.27` to `1.0.151`
14+
15+
16+
## 0.3.1
17+
Released: Jan 16th 2019
18+
19+
- Add `Node.mark_dirty()`
20+
- Update dependencies:
21+
- `ordered_float` from `0.5.0` to `1.0.1`
22+
23+
24+
## 0.3.0
25+
Released: 16 Oct 2018
26+
27+
- Initial tagged version

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "yoga"
33
description = "Rust bindings for Facebook's Yoga, a Flexbox layout engine"
44
license = "MIT"
55
repository = "https://github.com/bschwind/yoga-rs"
6-
version = "0.3.1"
6+
version = "0.4.0"
77
authors = ["Brian Schwind <[email protected]>"]
88
build = "build.rs"
99
edition = "2021"
@@ -13,10 +13,10 @@ default = []
1313
serde_support = ["serde", "serde_derive", "ordered-float/serde"]
1414

1515
[build-dependencies]
16-
bindgen = "0.62.0"
17-
cc = "1.0.17"
16+
bindgen = "0.63.0"
17+
cc = "1.0.78"
1818

1919
[dependencies]
20-
ordered-float = "1.0.1"
21-
serde = { version = "1.0.27", optional = true }
22-
serde_derive = { version = "1.0.27", optional = true }
20+
ordered-float = "3.4.0"
21+
serde = { version = "1.0.151", optional = true }
22+
serde_derive = { version = "1.0.151", optional = true }

0 commit comments

Comments
 (0)