diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f5c8db4..1361ecf5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (stdair) set_project_names (stdair StdAir) set_project_brief ("C++ Standard Airline IT Object Library") -set_project_versions (1 00 15) +set_project_versions (1 00 16) ## # Project options diff --git a/ChangeLog b/ChangeLog index 2fe9410b..5f6fcdd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Mon Nov 18 2024 Denis Arnaud - 1.00.16: +- Upgraded CMake support files + * Sat Mar 23 2024 Denis Arnaud - 1.00.15 - Upgraded CMake support files diff --git a/NEWS b/NEWS index 980cc1a8..a173dfc4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2024-11-18: +- Version 1.00.16 +- Upgraded CMake support files + * 2024-03-23: - Version 1.00.15 - Upgraded CMake support files diff --git a/README.md b/README.md index f8d6f730..5af966cc 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,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 STDAIR_VER="1.00.15" +export STDAIR_VER="1.00.16" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index 2c1e65d2..fd2d18ff 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=00 -VERSION_PATCH=15 +VERSION_PATCH=16 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]\+$"`