Skip to content

Commit

Permalink
Release/0.4.0 (#56)
Browse files Browse the repository at this point in the history
* 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
nicoburns authored Dec 20, 2022
1 parent a88bb7c commit 5f698b2
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
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
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 }

0 comments on commit 5f698b2

Please sign in to comment.