From d6462471b98697643bae6feab2c8eb4468fc71ef Mon Sep 17 00:00:00 2001 From: Maxim Baz Date: Sun, 27 Oct 2024 22:36:58 +0100 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- src/frame/vulkan.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f927334..5bb57a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1531,7 +1531,7 @@ dependencies = [ [[package]] name = "wluma" -version = "4.5.0" +version = "4.5.1" dependencies = [ "anyhow", "ash", diff --git a/Cargo.toml b/Cargo.toml index 68b30dc..a49bfa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wluma" -version = "4.5.0" +version = "4.5.1" authors = ["Maxim Baz", "Cyril Levis"] edition = "2021" diff --git a/Makefile b/Makefile index a74563a..ccd8af3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := wluma -VERSION := 4.5.0 +VERSION := 4.5.1 PREFIX ?= /usr LIB_DIR = $(DESTDIR)$(PREFIX)/lib diff --git a/src/frame/vulkan.rs b/src/frame/vulkan.rs index b54c13c..5136c79 100644 --- a/src/frame/vulkan.rs +++ b/src/frame/vulkan.rs @@ -8,7 +8,7 @@ use std::ffi::CString; use std::ops::Drop; use std::os::fd::{AsRawFd, FromRawFd, OwnedFd}; -const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 5, 0); +const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 5, 1); const VULKAN_VERSION: u32 = vk::make_api_version(0, 1, 2, 0); const FINAL_MIP_LEVEL: u32 = 4; // Don't generate mipmaps beyond this level - GPU is doing too poor of a job averaging the colors