Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maximbaz committed Feb 7, 2022
1 parent ed074b0 commit addfd32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 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.1.1"
version = "4.1.2"
authors = ["Maxim Baz", "Cyril Levis"]
edition = "2021"

Expand Down
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BIN := wluma
VERSION := 4.1.1
VERSION := 4.1.2

PREFIX ?= /usr
LIB_DIR = $(DESTDIR)$(PREFIX)/lib
Expand Down Expand Up @@ -49,7 +49,8 @@ install:
.PHONY: dist
dist: clean build
mkdir -p dist
tar -czvf "dist/$(BIN)-$(VERSION)-linux-x86_64.tar.gz" "target/release/$(BIN)" 90-$(BIN)-backlight.rules "$(BIN).service" LICENSE README.md config.toml Makefile
cp "target/release/$(BIN)" .
tar -czvf "dist/$(BIN)-$(VERSION)-linux-x86_64.tar.gz" "$(BIN)" "90-$(BIN)-backlight.rules" "$(BIN).service" LICENSE README.md config.toml Makefile
git archive -o "dist/$(BIN)-$(VERSION).tar.gz" --format tar.gz --prefix "$(BIN)-$(VERSION)/" "$(VERSION)"
for f in dist/*.tar.gz; do gpg --detach-sign --armor "$$f"; done
rm -f "dist/$(BIN)-$(VERSION).tar.gz"
rm -f "dist/$(BIN)-$(VERSION).tar.gz" "$(BIN)"
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, 1, 1);
const WLUMA_VERSION: u32 = vk::make_api_version(0, 4, 1, 2);
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 addfd32

Please sign in to comment.