diff --git a/CHANGELOG.md b/CHANGELOG.md index ea4b065..1c4f563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.16.1 + +- `Device`/`Surface`/`BufferObject` are now `Sync` +- `Device::format_modifier_plane_count` was added as a wrapper for `gbm_device_get_format_modifier_plane_count` + ## 0.16.0 - Update drm-rs to 0.14 diff --git a/Cargo.toml b/Cargo.toml index 9bd65f3..f043c88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "libgbm bindings for rust" license = "MIT" documentation = "https://docs.rs/gbm" repository = "https://github.com/Smithay/gbm.rs" -version = "0.16.0" +version = "0.16.1" keywords = ["wayland", "gbm", "drm", "bindings"] categories = ["external-ffi-bindings"] authors = ["Victoria Brekenfeld "] diff --git a/README.md b/README.md index 54120a8..c6470e4 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ provided through the `drm-support` feature. Add to your Cargo.toml ```toml -gbm = "0.16.0" +gbm = "0.16.1" ``` ## Example