From 7f855028a63367392d7792733e174a6a2b143bc4 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 24 Mar 2024 15:17:35 +0100 Subject: [PATCH] [Release] Release of the 1.00.11 version --- CMakeLists.txt | 2 +- ChangeLog | 3 +++ NEWS | 4 ++++ README.md | 2 +- autogen.sh | 2 +- 5 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42a54b2..1a33cb7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (rmol) set_project_names (rmol) set_project_brief ("C++ library of Revenue Management and Optimisation classes and functions") -set_project_versions (1 00 10) +set_project_versions (1 00 11) ## # Project options diff --git a/ChangeLog b/ChangeLog index a9847d9..a190692 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Sun Mar 24 2024 Denis Arnaud - 1.00.11 +- Upgraded CMake support files + * Sat Mar 23 2024 Denis Arnaud - 1.00.10 - Upgraded CMake support files diff --git a/NEWS b/NEWS index 81533e8..1de0305 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2024-03-24: +- Version 1.00.11 +- Upgraded CMake support files + * 2024-03-23: - Version 1.00.10 - Upgraded CMake support files diff --git a/README.md b/README.md index 83e1b46..cf98b26 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ If MetaSim is not used, in order to customise the following to your environment, you can alter the path to the installation directory: ```bash export INSTALL_BASEDIR="${HOME}/dev/deliveries" -export RMOL_VER="1.00.10" +export RMOL_VER="1.00.11" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index 5c0f3b0..494272d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=00 -VERSION_PATCH=10 +VERSION_PATCH=11 VERSION_TMP_STRING=`grep "set_project_versions" CMakeLists.txt | sed -e "s/set_project_versions.*\([0-9]\+.\+[0-9]\+.\+[0-9]\+\).\+/\1/"` VERSION_STRING=`echo "${VERSION_TMP_STRING}" | grep "^[0-9]\+.[0-9]\+.[0-9]\+$"`