From 1585bd38d1184147a9c3fb54ce359554ba4afd5b Mon Sep 17 00:00:00 2001 From: Vasyl Skorych Date: Fri, 23 Feb 2024 13:45:37 +0100 Subject: [PATCH] Version 1.3.0 --- CMakeLists.txt | 4 ++-- Utilities/DyssolSystemDefines.h | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd56742b..75e23938 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,8 +5,8 @@ cmake_minimum_required(VERSION 3.1.0) -set (VERSION 1.2.0) -set (SOVERSION 1.2) +set (VERSION 1.3.0) +set (SOVERSION 1.3) OPTION(BUILD_BINARIES "Whether to build binary files" ON) OPTION(BUILD_DOCS "Whether to build documentation" ON) diff --git a/Utilities/DyssolSystemDefines.h b/Utilities/DyssolSystemDefines.h index 189a9cfa..39d896fc 100644 --- a/Utilities/DyssolSystemDefines.h +++ b/Utilities/DyssolSystemDefines.h @@ -1,4 +1,6 @@ -/* Copyright (c) 2020, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */ +/* Copyright (c) 2020, Dyssol Development Team. + * Copyright (c) 2024, DyssolTEC GmbH. + * All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */ #pragma once @@ -6,7 +8,7 @@ #include "DyssolHelperDefines.h" #define VERSION_0 1 -#define VERSION_1 2 +#define VERSION_1 3 #define VERSION_2 0 #define CURRENT_VERSION VERSION_0,VERSION_1,VERSION_2 #define CURRENT_VERSION_STR MACRO_TOSTRING(VERSION_0) "." MACRO_TOSTRING(VERSION_1) "." MACRO_TOSTRING(VERSION_2)