diff --git a/CHANGELOG_VULKANO.md b/CHANGELOG_VULKANO.md index 0f4e4e31aa..cffd759a6a 100644 --- a/CHANGELOG_VULKANO.md +++ b/CHANGELOG_VULKANO.md @@ -6,6 +6,9 @@ description. They will be transferred to this file right after the Pull Request merge. --> + +# Version 0.25.0 (2021-08-10) + - **Breaking** Refactoring of `PhysicalDevice` and related types. - The module `instance::physical_device` is moved to `device::physical`. Items are exported directly from there. - Functions on `PhysicalDevice` that previously returned a custom iterator type now return `impl ExactSizeIterator`. diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index 8782492588..0a1303832b 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shaders" -version = "0.24.0" +version = "0.25.0" edition = "2018" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" @@ -23,7 +23,7 @@ spirv_headers = "1.5" syn = { version="1.0", features=["full", "extra-traits"] } [dev-dependencies] -vulkano = { version="0.24.0", path="../vulkano" } +vulkano = { version="0.25.0", path="../vulkano" } [features] shaderc-build-from-source = ["shaderc/build-from-source"] diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index 37d11a619c..84c185e432 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-win" -version = "0.24.0" +version = "0.25.0" edition = "2018" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" @@ -18,7 +18,7 @@ raw-window-handle_ = ["raw-window-handle"] [dependencies] winit = { version = "0.25", optional = true } -vulkano = { version = "0.24.0", path = "../vulkano" } +vulkano = { version = "0.25.0", path = "../vulkano" } raw-window-handle = { version = "0.3.3", optional = true } [target.'cfg(target_os = "macos")'.dependencies] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index 767d4154f9..99c9a33d5d 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano" -version = "0.24.0" +version = "0.25.0" edition = "2018" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano"