diff --git a/CHANGELOG.md b/CHANGELOG.md index c44f5ca..5268d79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.14.0 +- Update to drm-rs 0.11 +- Use `BorrowedFd` instead of `RawFd` in API +- Don't require generated bindings for specific OS/architecture to build +- Fix build without default features + ## 0.13.0 - Update to drm-rs 0.10 diff --git a/Cargo.toml b/Cargo.toml index 57f217a..d406c5e 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.13.0" +version = "0.14.0" keywords = ["wayland", "gbm", "drm", "bindings"] categories = ["external-ffi-bindings"] authors = ["Victoria Brekenfeld "] @@ -17,7 +17,7 @@ bitflags = "1.2" drm-fourcc = "2.2" [dependencies.gbm-sys] -version = "0.2.2" +version = "0.3.0" path = "./gbm-sys" [dependencies.drm] diff --git a/gbm-sys/Cargo.toml b/gbm-sys/Cargo.toml index 3e6b33f..aa45180 100644 --- a/gbm-sys/Cargo.toml +++ b/gbm-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gbm-sys" -version = "0.2.2" +version = "0.3.0" authors = ["Drakulix (Victor Brekenfeld)"] build = "build.rs" description = "Bindgen generated unsafe libgbm wrapper"