From 7800d4f2d6b90d3ad68a66944b75e0fff0c0ad08 Mon Sep 17 00:00:00 2001 From: flooklab Date: Thu, 9 Jan 2025 17:13:27 +0100 Subject: [PATCH] Update version. --- CMakeLists.txt | 2 +- doc/Doxyfile.in | 2 +- src/version.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c3c86e6..33d1f59 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose type of build (Debug or Release)") endif(NOT CMAKE_BUILD_TYPE) -project(SPNV VERSION 0.1.0 LANGUAGES CXX) +project(SPNV VERSION 0.1.1 LANGUAGES CXX) set(EXECUTABLE_NAME ${PROJECT_NAME}) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index b6f6a5d..cb46b3a 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -38,7 +38,7 @@ PROJECT_NAME = SPNV # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1 +PROJECT_NUMBER = 0.1.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/version.h b/src/version.h index 910f6a9..861c1c9 100644 --- a/src/version.h +++ b/src/version.h @@ -57,7 +57,7 @@ inline constexpr char programName[] = "SPNV"; ///< Name of inline constexpr int spnvVersionMajor = 0; ///< Program version major number. inline constexpr int spnvVersionMinor = 1; ///< Program version minor number. -inline constexpr int spnvVersionPatch = 0; ///< Program version patch number. +inline constexpr int spnvVersionPatch = 1; ///< Program version patch number. inline constexpr ReleaseType spnvVersionType = ReleaseType::Normal; ///< Program version release type. std::string toString(); ///< Get the program version formatted as string.