Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maximbaz committed Mar 30, 2024
1 parent c5b1f71 commit 3c98ace
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wluma"
version = "4.3.0"
version = "4.4.0"
authors = ["Maxim Baz", "Cyril Levis"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BIN := wluma
VERSION := 4.3.0
VERSION := 4.4.0

PREFIX ?= /usr
LIB_DIR = $(DESTDIR)$(PREFIX)/lib
Expand Down
2 changes: 1 addition & 1 deletion src/frame/vulkan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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, 3, 0);
const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 4, 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
Expand Down

0 comments on commit 3c98ace

Please sign in to comment.