From 67a66337a88881bf2ebfa7bedad4b75660ee833c Mon Sep 17 00:00:00 2001 From: Maxim Baz Date: Tue, 7 Jan 2025 10:38:45 +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 7d4ee78..357c7ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1515,7 +1515,7 @@ dependencies = [ [[package]] name = "wluma" -version = "4.6.0" +version = "4.6.1" dependencies = [ "anyhow", "ash", diff --git a/Cargo.toml b/Cargo.toml index 622c25d..7b136c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wluma" -version = "4.6.0" +version = "4.6.1" authors = ["Maxim Baz", "Cyril Levis"] edition = "2021" diff --git a/Makefile b/Makefile index 8e02b00..86e730c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := wluma -VERSION := 4.6.0 +VERSION := 4.6.1 PREFIX ?= /usr LIB_DIR = $(DESTDIR)$(PREFIX)/lib diff --git a/src/frame/vulkan.rs b/src/frame/vulkan.rs index 0bbdb76..59126e1 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, 6, 0); +const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 6, 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