From 8e33069babdde17998c9187c0786446ca5c30823 Mon Sep 17 00:00:00 2001 From: Maxim Baz Date: Fri, 28 Jul 2023 18:07:56 +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 f22df31..22a0f9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1454,7 +1454,7 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" [[package]] name = "wluma" -version = "4.2.0" +version = "4.3.0" dependencies = [ "ash", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b59055f..eedc856 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wluma" -version = "4.2.0" +version = "4.3.0" authors = ["Maxim Baz", "Cyril Levis"] edition = "2021" diff --git a/Makefile b/Makefile index d6b9f8d..7ee043d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := wluma -VERSION := 4.2.0 +VERSION := 4.3.0 PREFIX ?= /usr LIB_DIR = $(DESTDIR)$(PREFIX)/lib diff --git a/src/frame/vulkan.rs b/src/frame/vulkan.rs index c87f81c..a7f2335 100644 --- a/src/frame/vulkan.rs +++ b/src/frame/vulkan.rs @@ -7,7 +7,7 @@ use std::error::Error; use std::ffi::CString; use std::ops::Drop; -const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 1, 2); +const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 3, 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