From 5a67f15901f6ce9cc2b257bdce64dc6574092dfb Mon Sep 17 00:00:00 2001 From: Lava Block <the@lava-block.com> Date: Sun, 20 Dec 2020 16:48:26 +0100 Subject: [PATCH] 2020.1 preview --- CMakeLists.txt | 4 ++-- DOCS.md | 2 +- README.md | 6 +++--- liblava/core/def.hpp | 2 +- liblava/core/version.hpp | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b870b79d..e5caa9d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.15) -project(liblava VERSION 0.5.5 LANGUAGES C CXX) +project(liblava VERSION 0.5.6 LANGUAGES C CXX) message("") message("========================================================================") @@ -18,7 +18,7 @@ message(" _| _| _| _| _| _| _| _| _| _| _| message(" _| _| _|_|_| _| _|_|_| _| _|_|_| ") message(" ") message("========================================================================") -message(" 2020 v0.5.5 ") +message(" 2020.1 preview v0.5.6 ") message("========================================================================") message(" https://git.io/liblava lava-block.com ") message("========================================================================") diff --git a/DOCS.md b/DOCS.md index 15935c2b..64ce1e84 100644 --- a/DOCS.md +++ b/DOCS.md @@ -1,6 +1,6 @@ <a href="https://lava-block.com"><img align="left" src="https://github.com/liblava.png" width="100" style="margin:0px 20px 0px 0px"></a> -# liblava docs [](https://git.io/liblava) +# liblava docs [](https://git.io/liblava) [Features](#features) **[Tutorial](#tutorial)** [Modules](#modules) **[Guide](#guide)** [Tests](#tests) **[Build](#build)** [Install](#install) diff --git a/README.md b/README.md index cc8da59b..4be6f226 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -<a href="https://lava-block.com"><img align="right" src="https://github.com/liblava.png" width="200" style="margin:0px 40px 0px 0px"></a> +<a href="https://lava-block.com"><img align="left" src="https://github.com/liblava.png" width="200" style="margin:0px 40px 0px 0px"></a> 🌋 **[liblava](https://git.io/liblava) A modern and easy-to-use library for the <a href="https://www.khronos.org/vulkan/" target="_blank">Vulkan</a>® API** @@ -6,9 +6,9 @@ <br /> -**C++20** + **Modular** **Windows** + **Linux** **<a href="https://git.io/liblava-demo">demo</a>** + <a href="https://git.io/liblava-template">template</a> +**C++20** + **Modular** **<a href="https://git.io/liblava-demo">demo</a>** + <a href="https://git.io/liblava-template">template</a> **Windows** + **Linux** -[](https://git.io/liblava) [](LICENSE) [](https://www.codefactor.io/repository/github/liblava/liblava) [](https://discord.lava-block.com) [](https://paypal.me/liblava) [](https://twitter.com/liblava) +[](https://git.io/liblava) [](LICENSE) [](https://www.codefactor.io/repository/github/liblava/liblava) [](https://discord.lava-block.com) [](https://paypal.me/liblava) [](https://twitter.com/liblava) <br /> diff --git a/liblava/core/def.hpp b/liblava/core/def.hpp index fc89ec25..8390239f 100644 --- a/liblava/core/def.hpp +++ b/liblava/core/def.hpp @@ -17,4 +17,4 @@ #define LIBLAVA_VERSION_MAJOR 0 #define LIBLAVA_VERSION_MINOR 5 -#define LIBLAVA_VERSION_PATCH 5 +#define LIBLAVA_VERSION_PATCH 6 diff --git a/liblava/core/version.hpp b/liblava/core/version.hpp index 9af87371..0eab325e 100644 --- a/liblava/core/version.hpp +++ b/liblava/core/version.hpp @@ -26,8 +26,8 @@ namespace lava { struct version { i32 year = 2020; - i32 release = 0; - version_stage stage = version_stage::release; + i32 release = 1; + version_stage stage = version_stage::preview; i32 rev = 0; }; -- GitLab