From d02b7d285ed56272581e98f4ed7ae96d63cab352 Mon Sep 17 00:00:00 2001 From: KRM7 <70973547+KRM7@users.noreply.github.com> Date: Fri, 18 Aug 2023 18:39:35 +0200 Subject: [PATCH] update versioning scheme --- CMakeLists.txt | 2 +- docs/api/Doxyfile | 2 +- docs/install-guide.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 51da7865..5c855c65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(gapp VERSION 0.1 LANGUAGES CXX) +project(gapp VERSION 0.1.0 LANGUAGES CXX) include(CheckIPOSupported) include(CTest) diff --git a/docs/api/Doxyfile b/docs/api/Doxyfile index 69adb87a..e69bc308 100644 --- a/docs/api/Doxyfile +++ b/docs/api/Doxyfile @@ -16,7 +16,7 @@ PROJECT_NAME = gapp # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1 +PROJECT_NUMBER = 0.1.0 # 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/docs/install-guide.md b/docs/install-guide.md index 4ef48e58..9ce3476e 100644 --- a/docs/install-guide.md +++ b/docs/install-guide.md @@ -147,7 +147,7 @@ Include(FetchContent) FetchContent_Declare( gapp GIT_REPOSITORY https://github.com/KRM7/gapp.git - GIT_TAG v0.1 + GIT_TAG v0.1.0 ) FetchContent_MakeAvailable(gapp)