Merge pull request #61 from rust-windowing/notgull/changelog

chore: Create changelog for past few weeks of changes
This commit is contained in:
Jeremy Soller 2023-01-06 08:51:11 -07:00 committed by GitHub
commit 2cdbb48b8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 10 deletions

19
CHANGELOG.md Normal file
View file

@ -0,0 +1,19 @@
# UNRELEASED
* 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.
* **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.
# 0.1.1
* Added WASM support (Thanks to [Liamolucko](https://github.com/Liamolucko)!)
* CALayer is now used for Mac OS backend, which is more flexible about what happens in the windowing library (Thanks to [lunixbochs](https://github.com/lunixbochs)!)
# 0.1.0
Initial published version with support for Linux (X11 and Wayland), Mac OS (but buggy), and WIndows.

View file

@ -103,13 +103,4 @@ fn main() {
Changelog
---------
See git tags for associated commits.
0.1.1
-----
- Added WASM support (Thanks to [Liamolucko](https://github.com/Liamolucko)!)
- CALayer is now used for Mac OS backend, which is more flexible about what happens in the windowing library (Thanks to [lunixbochs](https://github.com/lunixbochs)!)
0.1.0
-----
Initial published version with support for Linux (X11 and Wayland), Mac OS (but buggy), and WIndows.
See the [changelog][./CHANGELOG.md] for a list of this package's versions and the changes made in each version.