From 2a7fca290e9166928bc048fb4afb07f510417e20 Mon Sep 17 00:00:00 2001 From: msiglreith Date: Tue, 31 Oct 2023 19:27:06 +0100 Subject: [PATCH] Bump version to 0.4.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cda922..e9149cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Unreleased +# 0.4.0 (2023-10-31) +- Update `raw-window-handle` dep to `0.6.0`. +- Remove `metal_layer_from_ns_window` and `metal_layer_from_ui_window`. + +# 0.3.2 (2023-10-31) +- Bump version of `cocoa` and `core-graphics` dependencies. + # 0.3.1 (2022-11-25) - Only build docs.rs for `darwin` and `ios`. diff --git a/Cargo.toml b/Cargo.toml index eb4e4d7..de406db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw-window-metal" -version = "0.3.1" +version = "0.4.0" license = "MIT OR Apache-2.0" authors = ["The Gfx-rs Developers"] edition = "2018" diff --git a/README.md b/README.md index b0d687d..a26e400 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Interoperability library for Metal and [`raw-window-handle`](https://github.com/rust-windowing/raw-window-handle) for surface creation. ```toml -raw-window-metal = "0.3" +raw-window-metal = "0.4" ``` `CAMetalLayer` is the common entrypoint for graphics APIs (e.g `gfx` or `MoltenVK`), but the handles provided by window libraries may not include such a layer.