diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d60b15..9d81e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.5.0 + +- ash 0.38 +- vk-mem 0.4 +- gpu-allocator 0.27 + ## 0.4.0 - egui >=0.26, <=0.28 diff --git a/Cargo.toml b/Cargo.toml index 8d287d1..91acd32 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.4.0" +version = "0.5.0" authors = ["Adrien Bennadji "] edition = "2021" include = ["/src", "LICENSE", "README.md", "CHANGELOG.md"] diff --git a/README.md b/README.md index 452c33f..3808e17 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ This is meant to add support for egui in your existing Vulkan/ash applications. | crate | egui | ash | gpu-allocator (feature) | vk-mem (feature) | |--------|--------------|--------------|-------------------------|------------------| -| 0.4.0 | [0.26, 0.28] | [0.34, 0.37] | [0.25, 0.26] | 0.3.0 | +| 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 | ## How it works diff --git a/src/lib.rs b/src/lib.rs index 51bac3a..c5b4576 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,8 @@ //! //! | crate | egui | ash | gpu-allocator (feature) | vk-mem (feature) | //! |--------|--------------|--------------|-------------------------|------------------| -//! | 0.4.0 | [0.26, 0.28] | [0.34, 0.37] | [0.25, 0.26] | 0.3.0 | +//! | 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 | //! //! ## How it works //!