From 2e19c006e2218447ee31f864191859517603f59f Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda <34214253+Tachi107@users.noreply.github.com> Date: Wed, 1 Sep 2021 15:57:59 +0200 Subject: [PATCH] cmake: update project version (#699) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 012512a..c606f47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ include( FetchContent ) FetchContent_Declare( date_src GIT_REPOSITORY https://github.com/HowardHinnant/date.git - GIT_TAG v3.0.0 # adjust tag/branch/commit as needed + GIT_TAG v3.0.1 # adjust tag/branch/commit as needed ) FetchContent_MakeAvailable(date_src) ... @@ -17,7 +17,7 @@ cmake_minimum_required( VERSION 3.7 ) -project( date VERSION 3.0.0 ) +project( date VERSION 3.0.1 ) set(ABI_VERSION 3) # used as SOVERSION, increment when ABI changes include( GNUInstallDirs )