Merge pull request #63 from rust-windowing/0.2.0

0.2.0
This commit is contained in:
Jeremy Soller 2023-01-06 09:20:43 -07:00 committed by GitHub
commit 3b33bbb0f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -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.
Initial published version with support for Linux (X11 and Wayland), Mac OS (but buggy), and Windows.

View file

@ -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"