Release ash 0.37.0 and ash-window 0.10.0 (#600)
This commit is contained in:
parent
8ae0312f03
commit
e537e0ba9d
12
Changelog.md
12
Changelog.md
|
@ -4,12 +4,15 @@ 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
|
## [Unreleased] - ReleaseDate
|
||||||
|
|
||||||
|
## [0.37.0] - 2022-03-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Dropped auto-generated wrapper methods from function pointer structs
|
- Dropped auto-generated wrapper methods from function pointer structs
|
||||||
in favor of direct invocation of function pointers (#599)
|
in favor of direct invocation of function pointers (#599)
|
||||||
|
- Constified extension names (#590)
|
||||||
- `VK_NV_device_diagnostic_checkpoints`: Enable passing `pNext`-initialized structs to `get_queue_checkpoint_data` (#588)
|
- `VK_NV_device_diagnostic_checkpoints`: Enable passing `pNext`-initialized structs to `get_queue_checkpoint_data` (#588)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -17,10 +20,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Update Vulkan-Headers to 1.3.209 (#597, #601)
|
- Update Vulkan-Headers to 1.3.209 (#597, #601)
|
||||||
- Added `VK_EXT_headless_surface` instance extension (#589)
|
- Added `VK_EXT_headless_surface` instance extension (#589)
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Constified extension names (#590)
|
|
||||||
|
|
||||||
## [0.36.0] - 2022-02-21
|
## [0.36.0] - 2022-02-21
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -322,7 +321,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.36.0...HEAD
|
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.37.0...HEAD
|
||||||
|
[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
|
||||||
[0.35.1]: https://github.com/MaikKlein/ash/releases/tag/0.35.1
|
[0.35.1]: https://github.com/MaikKlein/ash/releases/tag/0.35.1
|
||||||
|
|
|
@ -16,7 +16,7 @@ A very lightweight wrapper around Vulkan
|
||||||
- [x] Device local function pointer loading
|
- [x] Device local function pointer loading
|
||||||
- [x] No validation, everything is **unsafe**
|
- [x] No validation, everything is **unsafe**
|
||||||
- [x] Generated from `vk.xml`
|
- [x] Generated from `vk.xml`
|
||||||
- [x] Support for Vulkan `1.1`, `1.2`
|
- [x] Support for Vulkan `1.1`, `1.2`, `1.3`
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
### Explicit returns with `Result`
|
### Explicit returns with `Result`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ash-window"
|
name = "ash-window"
|
||||||
version = "0.9.1"
|
version = "0.10.0"
|
||||||
authors = ["msiglreith <m.siglreith@gmail.com>"]
|
authors = ["msiglreith <m.siglreith@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -14,7 +14,7 @@ exclude = [".github/*"]
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ash = { path = "../ash", version = ">=0.34, <=0.36", default-features = false }
|
ash = { path = "../ash", version = "0.37", default-features = false }
|
||||||
raw-window-handle = "0.3.4"
|
raw-window-handle = "0.3.4"
|
||||||
|
|
||||||
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
||||||
|
@ -22,7 +22,7 @@ raw-window-metal = "0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
winit = "0.19.4"
|
winit = "0.19.4"
|
||||||
ash = { path = "../ash", version = "0.36", default-features = false, features = ["linked"] }
|
ash = { path = "../ash", version = "0.37", default-features = false, features = ["linked"] }
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "winit"
|
name = "winit"
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
## [Unreleased] - ReleaseDate
|
## [Unreleased] - ReleaseDate
|
||||||
|
|
||||||
|
## [0.10.0] - 2022-03-23
|
||||||
|
|
||||||
|
- Bumped `ash` version to [`0.37`](https://github.com/MaikKlein/ash/releases/tag/0.37.0) (#600)
|
||||||
- Make `enumerate_required_extensions()` return `&[*const c_char]` instead of `Vec<&CStr>` to match `ash::vk::InstanceCreateInfo` (#590)
|
- Make `enumerate_required_extensions()` return `&[*const c_char]` instead of `Vec<&CStr>` to match `ash::vk::InstanceCreateInfo` (#590)
|
||||||
|
|
||||||
## [0.9.1] - 2022-02-21
|
## [0.9.1] - 2022-02-21
|
||||||
|
@ -65,7 +68,8 @@
|
||||||
## Version 0.1.0
|
## Version 0.1.0
|
||||||
Initial release for `raw-window-handle = "0.3"` with Windows, Linux, Android, MacOS/iOS support.
|
Initial release for `raw-window-handle = "0.3"` with Windows, Linux, Android, MacOS/iOS support.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/MaikKlein/ash/compare/ash-window-0.9.1...HEAD
|
[Unreleased]: https://github.com/MaikKlein/ash/compare/ash-window-0.10.0...HEAD
|
||||||
|
[0.10.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.10.0
|
||||||
[0.9.1]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.9.1
|
[0.9.1]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.9.1
|
||||||
[0.9.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.9.0
|
[0.9.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.9.0
|
||||||
[0.8.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.8.0
|
[0.8.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.8.0
|
||||||
|
|
|
@ -12,7 +12,7 @@ Interoperability between [`ash`](https://github.com/MaikKlein/ash) and [`raw-win
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
ash-window = "0.9.1"
|
ash-window = "0.10.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
The library exposes two functions:
|
The library exposes two functions:
|
||||||
|
@ -31,7 +31,7 @@ The library exposes two functions:
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
```toml
|
```toml
|
||||||
ash = ">=0.34, <=0.36"
|
ash = "0.37"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ash"
|
name = "ash"
|
||||||
version = "0.36.0+1.3.209"
|
version = "0.37.0+1.3.209"
|
||||||
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