mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 00:04:15 +00:00
Release 0.23.0 (#1576)
This commit is contained in:
parent
116abf4d58
commit
8c0630d3c8
@ -1,6 +1,10 @@
|
||||
# Unreleased
|
||||
|
||||
# Version 0.6.0 (2020-03-05)
|
||||
# Version 0.6.1 (2021-04-10)
|
||||
|
||||
- Add `MEMORY_HEAP_MULTI_INSTANCE_BIT` for `MemoryHeap`.
|
||||
|
||||
# Version 0.6.0 (2021-03-05)
|
||||
|
||||
- Added support for VK1.2 formats.
|
||||
- Added support for additional image aspect bits.
|
||||
|
@ -3,6 +3,10 @@
|
||||
Please add new changes at the bottom, preceded by a hyphen -.
|
||||
Breaking changes should be listed first, before other changes, and should be preceded by - **Breaking**.
|
||||
-->
|
||||
|
||||
|
||||
# Version 0.23.0 (2021-04-10)
|
||||
|
||||
- **Breaking** Changes to command buffers:
|
||||
- `AutoCommandBuffer` and the `CommandBuffer` trait have been split in two, one for primary and the other for secondary command buffers. `AutoCommandBufferBuilder` remains one type, but has a type parameter for the level of command buffer it will be creating, and some of its methods are only implemented for builders that create `PrimaryAutoCommandBuffer`.
|
||||
- The `Flags` enum is renamed to `CommandBufferUsage`, and is exported from the main `command_buffer` module. The `None` variant is renamed to `MultipleSubmit`.
|
||||
@ -57,7 +61,6 @@
|
||||
- Various functions for converting to/from Vulkan flags have been consolidated into implementations of the standard `From` trait.
|
||||
- Export root-level `entry_point` method on `loader::FunctionPointers` type.
|
||||
- Add few more `InstanceExtensions` from KHR and EXT.
|
||||
- Add `MEMORY_HEAP_MULTI_INSTANCE_BIT` for `MemoryHeap`.
|
||||
|
||||
# Version 0.22.0 (2021-03-31)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vk-sys"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
edition = "2018"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano-shaders"
|
||||
version = "0.22.0"
|
||||
version = "0.23.0"
|
||||
edition = "2018"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
@ -21,7 +21,7 @@ shaderc = "0.7"
|
||||
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
||||
|
||||
[dev-dependencies]
|
||||
vulkano = { version = "0.22.0", path = "../vulkano" }
|
||||
vulkano = { version = "0.23.0", path = "../vulkano" }
|
||||
|
||||
[features]
|
||||
shaderc-build-from-source = ["shaderc/build-from-source"]
|
||||
|
@ -18,7 +18,7 @@ raw-window-handle_ = ["raw-window-handle"]
|
||||
|
||||
[dependencies]
|
||||
winit = { version = "0.24", optional = true }
|
||||
vulkano = { version = "0.22.0", path = "../vulkano" }
|
||||
vulkano = { version = "0.23.0", path = "../vulkano" }
|
||||
raw-window-handle = { version = "0.3.3", optional = true }
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano"
|
||||
version = "0.22.0"
|
||||
version = "0.23.0"
|
||||
edition = "2018"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
@ -21,4 +21,4 @@ lazy_static = "1.4"
|
||||
parking_lot = { version = "0.11.1", features = ["send_guard"] }
|
||||
shared_library = "0.1"
|
||||
smallvec = "1.6"
|
||||
vk-sys = { version = "0.6.0", path = "../vk-sys" }
|
||||
vk-sys = { version = "0.6.1", path = "../vk-sys" }
|
||||
|
Loading…
Reference in New Issue
Block a user