From 31a5b2cb59e1e5c9149d44b92bfbf3253b871460 Mon Sep 17 00:00:00 2001 From: Maxim Baz Date: Sat, 26 Oct 2024 18:34:02 +0200 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 12fa649..f927334 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1531,7 +1531,7 @@ dependencies = [ [[package]] name = "wluma" -version = "4.4.1" +version = "4.5.0" dependencies = [ "anyhow", "ash", diff --git a/Cargo.toml b/Cargo.toml index 8ff2a01..68b30dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wluma" -version = "4.4.1" +version = "4.5.0" authors = ["Maxim Baz", "Cyril Levis"] edition = "2021" diff --git a/Makefile b/Makefile index 9354d6b..a74563a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := wluma -VERSION := 4.4.1 +VERSION := 4.5.0 PREFIX ?= /usr LIB_DIR = $(DESTDIR)$(PREFIX)/lib diff --git a/src/frame/vulkan.rs b/src/frame/vulkan.rs index c983a3a..b54c13c 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, 4, 1); +const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 5, 0); 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