From fdf6c2e2ffc5f3f5e3023274bb3722a9358f47f7 Mon Sep 17 00:00:00 2001 From: Adrien Bennadji Date: Fri, 27 Sep 2024 13:26:09 +0200 Subject: [PATCH] version 0.6.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- README.md | 1 + src/lib.rs | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d81e4a..c3712e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.0 + +- egui >=0.26, <=0.29 +- examples: winit 0.30 + ## 0.5.0 - ash 0.38 diff --git a/Cargo.toml b/Cargo.toml index 13e4499..23f5de3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://github.com/adrien-ben/egui-ash-renderer" repository = "https://github.com/adrien-ben/egui-ash-renderer" documentation = "https://docs.rs/egui-ash-renderer" license = "MIT" -version = "0.5.0" +version = "0.6.0" authors = ["Adrien Bennadji "] edition = "2021" include = ["/src", "LICENSE", "README.md", "CHANGELOG.md"] diff --git a/README.md b/README.md index 3808e17..0474b75 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ This is meant to add support for egui in your existing Vulkan/ash applications. | crate | egui | ash | gpu-allocator (feature) | vk-mem (feature) | |--------|--------------|--------------|-------------------------|------------------| +| 0.6.0 | [0.26, 0.29] | 0.38 | 0.27 | 0.4 | | 0.5.0 | [0.26, 0.28] | 0.38 | 0.27 | 0.4 | | 0.4.0 | [0.26, 0.28] | [0.34, 0.37] | [0.25, 0.26] | 0.3 | diff --git a/src/lib.rs b/src/lib.rs index c5b4576..fa72e44 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,7 @@ //! //! | crate | egui | ash | gpu-allocator (feature) | vk-mem (feature) | //! |--------|--------------|--------------|-------------------------|------------------| +//! | 0.6.0 | [0.26, 0.29] | 0.38 | 0.27 | 0.4 | //! | 0.5.0 | [0.26, 0.28] | 0.38 | 0.27 | 0.4 | //! | 0.4.0 | [0.26, 0.28] | [0.34, 0.37] | [0.25, 0.26] | 0.3 | //!