Release ash 0.37.1
(#632)
This commit is contained in:
parent
4b1c03e4d9
commit
e93dfdaaf5
|
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased] - ReleaseDate
|
## [0.37.1] - 2022-11-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added `VK_EXT_image_drm_format_modifier` device extension (#603)
|
- 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)
|
- 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 `const STRUCTURE_TYPE` to all Vulkan structures for matching with `match_struct!` macro (#614)
|
||||||
- Added `VK_EXT_sample_locations` device extension (#616)
|
- Added `VK_EXT_sample_locations` device extension (#616)
|
||||||
|
@ -349,7 +350,8 @@ 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.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.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.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
|
[0.35.2]: https://github.com/MaikKlein/ash/releases/tag/0.35.2
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ash"
|
name = "ash"
|
||||||
version = "0.37.0+1.3.235"
|
version = "0.37.1+1.3.235"
|
||||||
authors = ["maik klein <maikklein@googlemail.com>"]
|
authors = [
|
||||||
|
"Maik Klein <maikklein@googlemail.com>",
|
||||||
|
"Benjamin Saunders <ben.e.saunders@gmail.com>",
|
||||||
|
"Marijn Suijten <marijn@traverseresearch.nl>",
|
||||||
|
]
|
||||||
description = "Vulkan bindings for Rust"
|
description = "Vulkan bindings for Rust"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/MaikKlein/ash"
|
repository = "https://github.com/MaikKlein/ash"
|
||||||
|
|
Loading…
Reference in a new issue