diff --git a/CMakeLists.txt b/CMakeLists.txt index 4c827ff..8d93713 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 7) +set_project_versions (1 00 8) ## # Project options diff --git a/ChangeLog b/ChangeLog index 3dbb4a6..590eef4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Sun Jun 26 2022 Denis Arnaud - 1.00.8 +- Upgraded CMake support files + * Sat Jun 26 2021 Denis Arnaud - 1.00.7 - Added support for Python 3.10 diff --git a/NEWS b/NEWS index 693186e..37f6ecc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2022-06-26: +- Version 1.00.8 +- Upgraded CMake support files + * 2021-06-26: - Version 1.00.7 - Added support for Python 3.10 diff --git a/README.md b/README.md index 488f984..adac04d 100644 --- a/README.md +++ b/README.md @@ -63,8 +63,7 @@ but names may vary according to distributions): ## Building the library and test binary from the tarball The latest stable source tarball (`rmol*.tar.gz` or `.bz2`) can be -found on GitHub: http://github.com/airsim/rmol/releases, _e.g._, -https://github.com/airsim/rmol/archive/rmol-1.00.7.tar.gz +found on GitHub: http://github.com/airsim/rmol/releases As RMOL depends on other [Travel Market Simulator (TvlSim/AirSim)](https://github.com/airsim/) @@ -80,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.7" +export RMOL_VER="1.00.8" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index b2d842b..5558c5a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=00 -VERSION_PATCH=7 +VERSION_PATCH=8 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]\+$"`