From 262c2884496dc05a7e18af02a87a76f66a815df5 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 20 Oct 2023 20:10:24 -0700 Subject: [PATCH] v0.3.2 Signed-off-by: John Nunley --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fda51f94..35ff0ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.3.2 + +* Document that `present_with_damage` is supported on web platforms. (#152) +* Replace our usage of `nix` with `rustix`. This enables this crate to run without `libc`. (#164) +* Use POSIX shared memory instead of Sys-V shared memory for the X11 backend. (#165) +* Bump version for the following dependencies: + * `memmap2` (#156) + * `redox_syscall` (#161) + * `drm` (#163) + # 0.3.1 * On X11, fix the length of the returned buffer when using the wire-transferred buffer. diff --git a/Cargo.toml b/Cargo.toml index 2a0915cf..5682e7aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "softbuffer" -version = "0.3.1" +version = "0.3.2" edition = "2021" license = "MIT OR Apache-2.0" description = "Cross-platform software buffer"