Release ash 0.35 and ash-window 0.9 without default compile-time linking (#529)
This commit is contained in:
parent
7cf3b4f09e
commit
9e7c1bff62
5 changed files with 20 additions and 8 deletions
|
@ -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.35.0] - 2021-12-27
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -258,7 +260,8 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
|
|||
can write to aligned memory.
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.34.0...HEAD
|
||||
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.35.0...HEAD
|
||||
[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
|
||||
[0.33.3]: https://github.com/MaikKlein/ash/releases/tag/0.33.3
|
||||
[0.33.2]: https://github.com/MaikKlein/ash/releases/tag/0.33.2
|
||||
|
|
|
@ -14,7 +14,7 @@ exclude = [".github/*"]
|
|||
workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
ash = { path = "../ash", version = "0.34", default-features = false }
|
||||
ash = { path = "../ash", version = "0.35", default-features = false }
|
||||
raw-window-handle = "0.3"
|
||||
|
||||
[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.34", default-features = false, features = ["linked"] }
|
||||
ash = { path = "../ash", version = "0.35", default-features = false, features = ["linked"] }
|
||||
|
||||
[[example]]
|
||||
name = "winit"
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
### Changelog
|
||||
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [0.9.0] - 2021-12-27
|
||||
|
||||
### Changed
|
||||
|
||||
- Bumped `ash` version to [`0.35`](https://github.com/MaikKlein/ash/releases/tag/0.35.0)
|
||||
|
||||
## [0.8.0] - 2021-12-22
|
||||
|
||||
### Changed
|
||||
|
@ -49,6 +57,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
|
||||
[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
|
||||
[0.6.0]: https://github.com/MaikKlein/ash/releases/tag/ash-window-0.6.0
|
||||
|
|
|
@ -14,7 +14,7 @@ Interoperability between [`ash`](https://github.com/MaikKlein/ash) and [`raw-win
|
|||
## Usage
|
||||
|
||||
```toml
|
||||
ash-window = "0.7"
|
||||
ash-window = "0.9"
|
||||
```
|
||||
|
||||
The library exposes two functions:
|
||||
|
@ -33,8 +33,7 @@ The library exposes two functions:
|
|||
|
||||
## Versions
|
||||
```toml
|
||||
ash = "0.33"
|
||||
raw-window-handle = "0.3"
|
||||
ash = "0.35"
|
||||
```
|
||||
|
||||
## Support
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ash"
|
||||
version = "0.34.0+1.2.203"
|
||||
version = "0.35.0+1.2.203"
|
||||
authors = ["maik klein <maikklein@googlemail.com>"]
|
||||
description = "Vulkan bindings for Rust"
|
||||
license = "MIT"
|
||||
|
|
Loading…
Add table
Reference in a new issue