From 8c6efc23c937c6c60af977aa829569d44fcb100c Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 27 Jun 2022 00:27:05 +0200 Subject: [PATCH] [Release] Release of the 1.00.4 version --- CMakeLists.txt | 2 +- ChangeLog | 3 +++ NEWS | 14 +++++++++----- README.md | 7 ++++--- autogen.sh | 2 +- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7c8e83..a9f388b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (simlfs) set_project_names (simlfs SimLFS) set_project_brief ("C++ Simulated Low Fare Search (LFS) Library") -set_project_versions (1 00 3) +set_project_versions (1 00 4) ## # Project options diff --git a/ChangeLog b/ChangeLog index a91ee5c..43169e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Sun Jun 26 2022 Denis Arnaud - 1.00.4 +- Upgraded CMake support files + * Sat Jun 26 2021 Denis Arnaud - 1.00.3 - Upgraded CMake support files diff --git a/NEWS b/NEWS index 8134831..5261ee8 100644 --- a/NEWS +++ b/NEWS @@ -1,21 +1,25 @@ -2021-06-26: +* 2022-06-26: +- Version 1.00.4 +- Upgraded CMake support files + +* 2021-06-26: - Version 1.00.3 - Upgraded CMake support files -2020-05-30: +* 2020-05-30: - Version 1.00.2 - Removed dependency on Python -2019-01-15: +* 2019-01-15: - Version 1.00.1 - CMake nows finds out automatically the right Boost.Python library version - Python 3.4 is the new minimum required version -2012-12-12: +* 2012-12-12: - Version 1.00.0 - Works with StdAir-1.00.0, AirRAC 1.00.0, RMOL-1.00.0, AirInv-1.00.0, SEvMgr 1.00.0 and SimFQT 1.00.0. -2011-11-24: +* 2011-11-24: - Version 0.1.0 - Works with StdAir-0.44.3, RMOL-0.25.2 and AirInv-0.1.0. diff --git a/README.md b/README.md index 3efc2b2..02ddd2c 100644 --- a/README.md +++ b/README.md @@ -48,14 +48,15 @@ but names may vary according to distributions): * rpm-build (optional) ## Building the library and test binary from the tarball -The latest stable source tarball (`simlfs*.tar.gz` or `.bz2`) can be found here: -https://github.com/airsim/simlfs/archive/simlfs-1.00.3.tar.gz +The latest stable source tarball (`simlfs*.tar.gz` or `.bz2`) can be found +on GitHub: +https://github.com/airsim/simlfs/releases To customise the following to your environment, you can alter the path to the installation directory: ```bash export INSTALL_BASEDIR="${HOME}/dev/deliveries" -export LFS_VER="1.00.3" +export LFS_VER="1.00.4" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" `` diff --git a/autogen.sh b/autogen.sh index ba87b4b..8547e9a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=00 -VERSION_PATCH=3 +VERSION_PATCH=4 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]\+$"`