Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maximbaz committed May 22, 2020
1 parent 7bd78b6 commit f30081c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BIN := wluma
VERSION := 1.0.0
VERSION := 1.1.0

PREFIX ?= /usr
LIB_DIR = $(DESTDIR)$(PREFIX)/lib
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'wluma',
'c',
version: '1.0.0',
version: '1.1.0',
license: 'MIT',
default_options: [
'buildtype=release',
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ static int init(struct Context *ctx, int argc, char *argv[]) {
VkApplicationInfo appInfo = {
.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
.pApplicationName = "wluma",
.applicationVersion = VK_MAKE_VERSION(1, 0, 0),
.applicationVersion = VK_MAKE_VERSION(1, 1, 0),
.pEngineName = "No Engine",
.engineVersion = VK_MAKE_VERSION(1, 0, 0),
.apiVersion = VK_API_VERSION_1_0,
Expand Down

0 comments on commit f30081c

Please sign in to comment.