Release ash 0.36.0 and ash-window 0.9.1 (#585)

This commit is contained in:
Marijn Suijten 2022-02-21 21:46:34 +01:00 committed by GitHub
parent 157524c869
commit 8d7abfb6f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 10 deletions

View file

@ -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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## [0.36.0] - 2022-02-21
### Changed
@ -305,8 +305,9 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
can write to aligned memory.
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.35.2...HEAD
[0.35.1]: https://github.com/MaikKlein/ash/releases/tag/0.35.2
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.36.0...HEAD
[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
[0.35.0]: https://github.com/MaikKlein/ash/releases/tag/0.35.0
[0.34.0]: https://github.com/MaikKlein/ash/releases/tag/0.34.0

View file

@ -1,6 +1,6 @@
[package]
name = "ash-window"
version = "0.9.0"
version = "0.9.1"
authors = ["msiglreith <m.siglreith@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -14,7 +14,7 @@ exclude = [".github/*"]
workspace = ".."
[dependencies]
ash = { path = "../ash", version = "0.35", default-features = false }
ash = { path = "../ash", version = ">=0.34, <=0.36", 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.35", default-features = false, features = ["linked"] }
ash = { path = "../ash", version = "0.36", default-features = false, features = ["linked"] }
[[example]]
name = "winit"

View file

@ -2,6 +2,12 @@
## [Unreleased] - ReleaseDate
## [0.9.1] - 2022-02-21
### Changed
- Convert `ash` version to a range, allowing [`0.34`](https://github.com/MaikKlein/ash/releases/tag/0.34.0)-[`0.36`](https://github.com/MaikKlein/ash/releases/tag/0.36.0) (#585)
## [0.9.0] - 2021-12-27
### Changed
@ -57,7 +63,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.0...HEAD
[Unreleased]: https://github.com/MaikKlein/ash/compare/ash-window-0.9.1...HEAD
[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
[0.7.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.7.0

View file

@ -12,7 +12,7 @@ Interoperability between [`ash`](https://github.com/MaikKlein/ash) and [`raw-win
## Usage
```toml
ash-window = "0.9"
ash-window = "0.9.1"
```
The library exposes two functions:
@ -31,7 +31,7 @@ The library exposes two functions:
## Versions
```toml
ash = "0.35"
ash = ">=0.34, <=0.36"
```
## Support

View file

@ -1,6 +1,6 @@
[package]
name = "ash"
version = "0.35.2+1.3.206"
version = "0.36.0+1.3.206"
authors = ["maik klein <maikklein@googlemail.com>"]
description = "Vulkan bindings for Rust"
license = "MIT"