Bumped version to 0.1.1, updated README.md, added changelog to README.md

This commit is contained in:
David Johnson 2022-05-22 18:20:40 -05:00
parent dac367138e
commit 08883d76c5
2 changed files with 18 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "softbuffer" name = "softbuffer"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
authors = ["David Johnson <john01dav@gmail.com>"] authors = ["David Johnson <john01dav@gmail.com>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"

View file

@ -40,11 +40,11 @@ For now, the priority for new platforms is:
✅: Present | ❌: Absent ✅: Present | ❌: Absent
- AndroidNdk ❌ - 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 ❌ - Orbital ❌
- UiKit ❌ - UiKit ❌
- Wayland ✅ (Wayland support in winit is immature at the moment, so it might be wise to force X11 if you're using winit) - 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 ✅ - Win32 ✅
- WinRt ❌ - WinRt ❌
- Xcb ❌ - Xcb ❌
@ -98,4 +98,18 @@ 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.