Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release ash 0.37.0 and ash-window 0.10.0 #600

Merged
merged 1 commit into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@ 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
## [Unreleased] - ReleaseDate

## [0.37.0] - 2022-03-23

### Changed

- Dropped auto-generated wrapper methods from function pointer structs
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)

### Added

- Update Vulkan-Headers to 1.3.209 (#597, #601)
- Added `VK_EXT_headless_surface` instance extension (#589)

### Changed

- Constified extension names (#590)

## [0.36.0] - 2022-02-21

### Changed
Expand Down Expand Up @@ -322,7 +321,8 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
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.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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A very lightweight wrapper around Vulkan
- [x] Device local function pointer loading
- [x] No validation, everything is **unsafe**
- [x] Generated from `vk.xml`
- [x] Support for Vulkan `1.1`, `1.2`
- [x] Support for Vulkan `1.1`, `1.2`, `1.3`

## Features
### Explicit returns with `Result`
Expand Down
6 changes: 3 additions & 3 deletions ash-window/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ash-window"
version = "0.9.1"
version = "0.10.0"
authors = ["msiglreith <m.siglreith@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -14,15 +14,15 @@ exclude = [".github/*"]
workspace = ".."

[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"

[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
raw-window-metal = "0.1"

[dev-dependencies]
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]]
name = "winit"
Expand Down
6 changes: 5 additions & 1 deletion ash-window/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [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)

## [0.9.1] - 2022-02-21
Expand Down Expand Up @@ -65,7 +68,8 @@
## Version 0.1.0
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.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
Expand Down
4 changes: 2 additions & 2 deletions ash-window/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Interoperability between [`ash`](https://github.com/MaikKlein/ash) and [`raw-win
## Usage

```toml
ash-window = "0.9.1"
ash-window = "0.10.0"
```

The library exposes two functions:
Expand All @@ -31,7 +31,7 @@ The library exposes two functions:

## Versions
```toml
ash = ">=0.34, <=0.36"
ash = "0.37"
```

## Support
Expand Down
2 changes: 1 addition & 1 deletion ash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ash"
version = "0.36.0+1.3.209"
version = "0.37.0+1.3.209"
authors = ["maik klein <maikklein@googlemail.com>"]
description = "Vulkan bindings for Rust"
license = "MIT"
Expand Down