diff --git a/CHANGELOG.md b/CHANGELOG.md index 31701f1..a3d339c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ -# UNRELEASED +# 0.2.0 * Add support for Redox/Orbital. * Add support for BSD distributions. * Ported Windows backend from `winapi` to `windows-sys`. * **Breaking:** Take a reference to a window instead of owning the window. * Add a `from_raw` function for directly using raw handles. +* Improvements for Wayland support. +* Support for HiDPI on macOS. * **Breaking:** Add feature flags for `x11` and `wayland` backends. * Use static dispatch instead of dynamic dispatch for the backends. * Add `libxcb` support to the X11 backend. +* Use X11 MIT-SHM extension, if available. # 0.1.1 @@ -16,4 +19,4 @@ # 0.1.0 -Initial published version with support for Linux (X11 and Wayland), Mac OS (but buggy), and WIndows. \ No newline at end of file +Initial published version with support for Linux (X11 and Wayland), Mac OS (but buggy), and Windows. diff --git a/Cargo.toml b/Cargo.toml index 6a3fc9e..27cfe35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "softbuffer" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Cross-platform software buffer"