From 32fc52ab9b0a3460b3dc5f128806dbb2f442264c Mon Sep 17 00:00:00 2001 From: jtnunley Date: Fri, 6 Jan 2023 07:43:29 -0800 Subject: [PATCH] Create changelog --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 11 +---------- 2 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..31701f1 --- /dev/null +++ b/CHANGELOG.md @@ -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. \ No newline at end of file diff --git a/README.md b/README.md index b491371..a35e8b0 100644 --- a/README.md +++ b/README.md @@ -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.