From fb050b35cc744d13dc38f13bcb4dcdcbaa4a1a08 Mon Sep 17 00:00:00 2001 From: seleznevae Date: Mon, 24 Feb 2020 15:21:26 +0300 Subject: [PATCH] [U] Updated library version --- CMakeLists.txt | 2 +- ChangeLog.md | 6 ++++++ lib/fort.h | 4 ++-- src/fort.h | 4 ++-- tests/package_tests/CMakeLists.txt | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e29152..c5ae45c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0) -project(libfort VERSION 0.4.0) +project(libfort VERSION 0.4.1) string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\1.\\2" libfort_SOVERSION diff --git a/ChangeLog.md b/ChangeLog.md index e3612b2..79585e8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,9 @@ +## v0.4.1 + +### Internal + +- Add alias `libfort::fort` for `fort` target that can be used via `add_subdirectory` in cmake. + ## v0.4.0 ### API diff --git a/lib/fort.h b/lib/fort.h index 0e17ca4..023653e 100644 --- a/lib/fort.h +++ b/lib/fort.h @@ -46,8 +46,8 @@ SOFTWARE. #define LIBFORT_MAJOR_VERSION 0 #define LIBFORT_MINOR_VERSION 4 -#define LIBFORT_REVISION 0 -#define LIBFORT_VERSION_STR "0.4.0" +#define LIBFORT_REVISION 1 +#define LIBFORT_VERSION_STR "0.4.1" /***************************************************************************** diff --git a/src/fort.h b/src/fort.h index 0e17ca4..023653e 100644 --- a/src/fort.h +++ b/src/fort.h @@ -46,8 +46,8 @@ SOFTWARE. #define LIBFORT_MAJOR_VERSION 0 #define LIBFORT_MINOR_VERSION 4 -#define LIBFORT_REVISION 0 -#define LIBFORT_VERSION_STR "0.4.0" +#define LIBFORT_REVISION 1 +#define LIBFORT_VERSION_STR "0.4.1" /***************************************************************************** diff --git a/tests/package_tests/CMakeLists.txt b/tests/package_tests/CMakeLists.txt index 5584df3..e68e6d3 100644 --- a/tests/package_tests/CMakeLists.txt +++ b/tests/package_tests/CMakeLists.txt @@ -14,7 +14,7 @@ endif() if (NOT DEFINED libfort_LIBRARIES) message(FATAL_ERROR "libfort_LIBRARIES are not defined") endif() -if (NOT ${libfort_VERSION} EQUAL "0.4.0") +if (NOT ${libfort_VERSION} EQUAL "0.4.1") message(FATAL_ERROR "libfort_VERSION is incorrect") endif()