From fc8b30cfa8027abb3d797d807982948d8443403e Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 1 May 2023 13:15:28 +0200 Subject: [PATCH] [Release] Release of the 1.01.10 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 fa78856..213d602 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (airtsp) set_project_names (airtsp AirTSP) set_project_brief ("C++ Simulated Airline Travel Solution Provider (TSP) Library") -set_project_versions (1 01 9) +set_project_versions (1 01 10) ## # Project options diff --git a/ChangeLog b/ChangeLog index aff192e..433be0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Mon May 01 2023 Denis Arnaud - 1.01.10 +- Upgraded CMake support files + * Sun Jun 26 2022 Denis Arnaud - 1.01.9 - Upgraded CMake support files diff --git a/NEWS b/NEWS index 98b3fd6..6a1daa8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2023-05-01: +- Version 1.01.10 +- Upgraded CMake support files + * 2022-06-26: - Version 1.01.9 - Upgraded CMake support files diff --git a/README.md b/README.md index f18b3e0..a34f0cf 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ $ dnf -y install airtsp-devel airtsp-doc You can also get the RPM packages (which may work on Linux distributions like Suse and Mandriva) from the Fedora repository -(_e.g._, for Fedora 32, -https://fr2.rpmfind.net/linux/RPM/fedora/32/x86_64/) +(_e.g._, for Fedora 38, +https://fr2.rpmfind.net/linux/RPM/fedora/38/x86_64/) ## Building the library and test binary from Git repository @@ -61,7 +61,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 AIRTSP_VER="1.01.9" +export AIRTSP_VER="1.01.10" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index b3f4f77..25185b4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=01 -VERSION_PATCH=9 +VERSION_PATCH=10 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]\+$"`