From e722f3add22a8fe1ffb219dc693a2318d5e5b8d0 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Fri, 29 Apr 2022 14:18:40 +0200 Subject: [PATCH] Release `ash 0.37.1` --- Changelog.md | 6 ++++-- ash/Cargo.toml | 8 ++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index c86651da6..e421e3b09 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - ReleaseDate +## [0.37.1] - 2022-11-23 ### Changed @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added `VK_EXT_image_drm_format_modifier` device extension (#603) +- Set MSRV (Minimum Supported Rust Version) in `Cargo.toml` for clearer errors (#604) - Update Vulkan-Headers to 1.3.235 (#605, #608, #619, #655, #667) - Added `const STRUCTURE_TYPE` to all Vulkan structures for matching with `match_struct!` macro (#614) - Added `VK_EXT_sample_locations` device extension (#616) @@ -349,7 +350,8 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT, can write to aligned memory. -[Unreleased]: https://github.com/MaikKlein/ash/compare/0.37.0...HEAD +[Unreleased]: https://github.com/MaikKlein/ash/compare/0.37.1...HEAD +[0.37.1]: https://github.com/MaikKlein/ash/releases/tag/0.37.1 [0.37.0]: https://github.com/MaikKlein/ash/releases/tag/0.37.0 [0.36.0]: https://github.com/MaikKlein/ash/releases/tag/0.36.0 [0.35.2]: https://github.com/MaikKlein/ash/releases/tag/0.35.2 diff --git a/ash/Cargo.toml b/ash/Cargo.toml index e398790bd..53a67aa25 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "ash" -version = "0.37.0+1.3.235" -authors = ["maik klein "] +version = "0.37.1+1.3.235" +authors = [ + "Maik Klein ", + "Benjamin Saunders ", + "Marijn Suijten ", +] description = "Vulkan bindings for Rust" license = "MIT OR Apache-2.0" repository = "https://github.com/MaikKlein/ash"