Release 0.31.0

This commit is contained in:
Maik Klein 2020-05-10 21:14:01 +02:00
parent ce1d3a1195
commit 8d7dfee763
2 changed files with 18 additions and 3 deletions

View file

@ -6,9 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.31.0] - 2020-05-10
### Added
- `libloading` is now an optional dependency, but still used by default
- Add metal surface extension
- Implement `VK_KHR_draw_indirect_count`
- Added const qualifier to `as_raw` and `from_raw` fns on enums
### Changed
- The `vk::Device` parameter in 1.2 functions is now implicit.
- The `vk::Device` parameter in 1.2 functions is now implicit
- Moved library creation out of `Entry::new_custom`
### Fixed
- Initialize MemoryRequirements with `Default` instead of `zeroed`
## [0.30.0] - 2020-03-22
@ -112,5 +126,6 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
can write to aligned memory.
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.30.0...HEAD
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.31.0...HEAD
[0.31.0]: https://github.com/MaikKlein/ash/releases/tag/0.31.0
[0.30.0]: https://github.com/MaikKlein/ash/releases/tag/0.30.0

View file

@ -1,6 +1,6 @@
[package]
name = "ash"
version = "0.30.0"
version = "0.31.0"
authors = ["maik klein <maikklein@googlemail.com>"]
description = "Vulkan bindings for Rust"
license = "MIT"