From eb23de8af7d98b3b2689a69d5f750602362d419c Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 26 Jun 2022 23:46:58 +0200 Subject: [PATCH] [Release] Release of the 1.00.4 version --- CMakeLists.txt | 2 +- ChangeLog | 3 +++ NEWS | 4 ++++ README.md | 6 +++--- autogen.sh | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a27ce2c..74b093a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (avlcal) set_project_names (avlcal AvlCal) set_project_brief ("C++ Seat Availability Calculator Library") -set_project_versions (1 00 3) +set_project_versions (1 00 4) ## # Project options diff --git a/ChangeLog b/ChangeLog index 4f6b3ab..0b3442b 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 944b288..2e67133 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2022-06-26: +- Version 1.00.4 +- Upgraded CMake support files + 2021-06-26: - Version 1.00.3 - Upgraded CMake support files diff --git a/README.md b/README.md index 70640be..75e858c 100644 --- a/README.md +++ b/README.md @@ -52,14 +52,14 @@ but names may vary according to distributions): * rpm-build (optional) ## Building the library and test binary from the tarball -The latest stable source tarball (`avlcal*.tar.gz` or `.bz2`) can be found here: -https://github.com/airsim/avlcal/archive/avlcal-1.00.3.tar.gz +The latest stable source tarball (`avlcal*.tar.gz` or `.bz2`) can be found +on GitHub: https://github.com/airsim/avlcal/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 AVLCAL_VER="1.00.3" +export AVLCAL_VER="1.00.4" export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=64" ``` diff --git a/autogen.sh b/autogen.sh index 98eab9b..4ba44b6 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]\+$"`