From c885043332684ce54e57c3932265aeaf8d795248 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 27 Jun 2022 00:49:28 +0200 Subject: [PATCH] [Release] Release of the 1.01.5 version --- CMakeLists.txt | 2 +- ChangeLog | 3 +++ NEWS | 18 +++++++++++------- README.md | 2 +- autogen.sh | 2 +- 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed12c728..2536d0be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (tvlsim) set_project_names (tvlsim TvlSim) set_project_brief ("C++ Simulated Travel-Oriented Distribution System Library") -set_project_versions (1 01 4) +set_project_versions (1 01 5) ## # Project options diff --git a/ChangeLog b/ChangeLog index 8d8382cf..e936b649 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Sun Jun 26 2022 Denis Arnaud - 1.01.5 +- Upgraded CMake support files + * Sat Jun 26 2021 Denis Arnaud - 1.01.4 - Upgraded CMake support files diff --git a/NEWS b/NEWS index c7e49085..6443a3f5 100644 --- a/NEWS +++ b/NEWS @@ -1,29 +1,33 @@ -2021-06-26: +* 2022-06-26: +- Version 1.01.5 +- Upgraded CMake support files + +* 2021-06-26: - Version 1.01.4 - Upgraded CMake support files -2020-05-30: +* 2020-05-30: - Version 1.01.3 - Removed dependency on Python -2019-07-11: +* 2019-07-11: - Version 1.01.2 - CMake support files updated for Python 3.8 -2019-01-15: +* 2019-01-15: - Version 1.01.1 - CMake nows finds out automatically the right Boost.Python library version - Python 3.4 is the new minimum required version -2013-06-08: +* 2013-06-08: - Version 1.01.0 - Renamed from AirSched into AirTSP, for trademark issue with Pancor. -2012-12-13: +* 2012-12-13: - Version 1.00.0 - Open source release -2011-11-23: +* 2011-11-23: - Version 0.1.0 - First release diff --git a/README.md b/README.md index 4632203e..d9b5c3a2 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ To customise the following to your environment, you can alter the path to the installation directory: ```bash export INSTALL_BASEDIR="${HOME}/dev/deliveries" -export TVLSIM_VER="1.01.4" +export TVLSIM_VER="1.01.5" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index a0bb5627..4806b586 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=01 -VERSION_PATCH=4 +VERSION_PATCH=5 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]\+$"`