Release 0.31.0
This commit is contained in:
parent
ce1d3a1195
commit
8d7dfee763
19
Changelog.md
19
Changelog.md
|
@ -6,9 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased] - ReleaseDate
|
## [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
|
### 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
|
## [0.30.0] - 2020-03-22
|
||||||
|
|
||||||
|
@ -112,5 +126,6 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
|
||||||
can write to aligned memory.
|
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
|
[0.30.0]: https://github.com/MaikKlein/ash/releases/tag/0.30.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ash"
|
name = "ash"
|
||||||
version = "0.30.0"
|
version = "0.31.0"
|
||||||
authors = ["maik klein <maikklein@googlemail.com>"]
|
authors = ["maik klein <maikklein@googlemail.com>"]
|
||||||
description = "Vulkan bindings for Rust"
|
description = "Vulkan bindings for Rust"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in a new issue