Skip to content

Commit 42b620d

Browse files
committed
version
1 parent 6a10a21 commit 42b620d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.10)
22
set(MOORDYN_MAJOR_VERSION 2)
3-
set(MOORDYN_MINOR_VERSION 4)
4-
set(MOORDYN_PATCH_VERSION 1)
3+
set(MOORDYN_MINOR_VERSION 5)
4+
set(MOORDYN_PATCH_VERSION 0)
55
set(MOORDYN_VERSION ${MOORDYN_MAJOR_VERSION}.${MOORDYN_MINOR_VERSION})
66
project(Moordyn VERSION ${MOORDYN_VERSION})
77

source/MoorDyn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ MoorDyn md_singleton = NULL;
8888
int DECLDIR
8989
MoorDynInit(const double x[], const double xd[], const char* infilename)
9090
{
91-
if (disableConsole == 0) {
91+
if (!disableConsole) {
9292
#ifdef WIN32
9393
// ------------ create console window for messages if none already available
9494
// ----------------- adapted from Andrew S. Tucker, "Adding Console I/O to a

0 commit comments

Comments
 (0)