diff --git a/Cargo.toml b/Cargo.toml index b2f9b8f..7d19c86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "softbuffer" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["David Johnson "] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 6bf8046..dc45860 100644 --- a/README.md +++ b/README.md @@ -40,11 +40,11 @@ For now, the priority for new platforms is: ✅: Present | ❌: Absent - AndroidNdk ❌ - - AppKit ✅ (Thanks to [Seo Sanghyeon](https://github.com/sanxiyn)!) + - AppKit ✅ (Thanks to [Seo Sanghyeon](https://github.com/sanxiyn) and [lunixbochs](https://github.com/lunixbochs)!) - Orbital ❌ - UiKit ❌ - Wayland ✅ (Wayland support in winit is immature at the moment, so it might be wise to force X11 if you're using winit) - - Web ✅ + - Web ✅ (Thanks to [Liamolucko](https://github.com/Liamolucko)!) - Win32 ✅ - WinRt ❌ - Xcb ❌ @@ -98,4 +98,18 @@ fn main() { } }); } -``` \ No newline at end of file +``` + +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. \ No newline at end of file