From 082c60c65ba0825ea1c9e64e026b631ca0d309ab Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 4 Jun 2023 15:58:36 -0700 Subject: [PATCH] v0.3.0 --- CHANGELOG.md | 14 +++++++++++--- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96400b22..eb3ff800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ -# UNRELEASED - -* On MacOS, the contents scale is updated when set_buffer() is called, to adapt when the window is on a new screen. +# 0.3.0 + +* On MacOS, the contents scale is updated when set_buffer() is called, to adapt when the window is on a new screen (#68). +* **Breaking:** Split the `GraphicsContext` type into `Context` and `Surface` (#64). +* On Web, cache the document in the `Context` type (#66). +* **Breaking:** Introduce a new "owned buffer" for no-copy presentation (#65). +* Enable support for multi-threaded WASM (#77). +* Fix buffer resizing on X11 (#69). +* Add a set of functions for handling buffer damage (#99). +* Add a `fetch()` function for getting the window contents (#104). +* Bump MSRV to 1.64 (#81). # 0.2.1 diff --git a/Cargo.toml b/Cargo.toml index ab6c48e8..5251ca75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "softbuffer" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Cross-platform software buffer"