diff --git a/Changelog.md b/Changelog.md index 89085cdf6..69c5b8c48 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,9 @@ 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 @@ -322,7 +324,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 diff --git a/README.md b/README.md index 2197e82e1..332f8791e 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/ash-window/Cargo.toml b/ash-window/Cargo.toml index cc1481f61..e88515ff1 100644 --- a/ash-window/Cargo.toml +++ b/ash-window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ash-window" -version = "0.9.1" +version = "0.10.0" authors = ["msiglreith "] edition = "2018" license = "MIT OR Apache-2.0" @@ -14,7 +14,7 @@ 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] @@ -22,7 +22,7 @@ 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" diff --git a/ash-window/Changelog.md b/ash-window/Changelog.md index 9502fd8cd..302a7b14e 100644 --- a/ash-window/Changelog.md +++ b/ash-window/Changelog.md @@ -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) - Make `enumerate_required_extensions()` return `&[*const c_char]` instead of `Vec<&CStr>` to match `ash::vk::InstanceCreateInfo` (#590) ## [0.9.1] - 2022-02-21 diff --git a/ash-window/README.md b/ash-window/README.md index 810eb073c..c0d0ba3b9 100644 --- a/ash-window/README.md +++ b/ash-window/README.md @@ -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: @@ -31,7 +31,7 @@ The library exposes two functions: ## Versions ```toml -ash = ">=0.34, <=0.36" +ash = "0.37" ``` ## Support diff --git a/ash/Cargo.toml b/ash/Cargo.toml index 96814f37e..58a80e3a7 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ash" -version = "0.36.0+1.3.209" +version = "0.37.0+1.3.209" authors = ["maik klein "] description = "Vulkan bindings for Rust" license = "MIT"