From 3958c076076c10b2c71b40aab3f6d4df6d303fff Mon Sep 17 00:00:00 2001 From: Graham Wihlidal Date: Wed, 25 Mar 2020 14:58:44 -0600 Subject: [PATCH] Updated to version 0.2.1 --- CHANGES.md | 7 +++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2682566..7943da6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## 0.2.1 (2020-03-25) + +* Added `Eq`, `Hash` and further derives to enum `MemoryUsage`. +* Added `Copy` to `Allocation`. +* Updated VMA vendoring to commit hash `e73e988dafba80633cd9d8d1abb1ae1af0439bae`. +* Updated dependencies and bindings. + ## 0.2.0 (2019-11-16) * Updated VMA vendoring to commit hash `a020fb81cb67b376fb33228475f22d0d9c29f9fd`. diff --git a/Cargo.toml b/Cargo.toml index 2f1881d..da46b37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vk-mem" -version = "0.2.0" +version = "0.2.1" authors = ["Graham Wihlidal "] description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA)" homepage = "https://github.com/gwihlidal/vk-mem-rs" diff --git a/README.md b/README.md index 9429732..ce4bce2 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -vk-mem = "0.2.0" +vk-mem = "0.2.1" ``` and add this to your crate root: