diff --git a/CMakeLists.txt b/CMakeLists.txt index fd8f116..57ddf70 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (trademgen) set_project_names (trademgen TraDemGen) set_project_brief ("C++ Simulated Travel Demand Generation Library") -set_project_versions (1 00 8) +set_project_versions (1 00 9) ## # Project options diff --git a/ChangeLog b/ChangeLog index 106af29..e5cc966 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Mon May 01 2023 Denis Arnaud - 1.00.9 +- Upgraded CMake support files + * Sun Jun 26 2022 Denis Arnaud - 1.00.8 - Upgraded CMake support files diff --git a/NEWS b/NEWS index 06dc6d3..d8f949e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2023-05-01: +- Version 1.00.9 +- Upgraded CMake support files + * 2022-06-26: - Version 1.00.8 - Upgraded CMake support files diff --git a/README.md b/README.md index 03d5bcb..55c1fce 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ $ dnf -y install trademgen-devel trademgen-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 @@ -73,7 +73,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/user/dev/deliveries" -export TDG_VER="1.00.8" +export TDG_VER="1.00.9" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=${LIBSUFFIX}" ``` @@ -160,8 +160,8 @@ $ python3 setup.py --build-type=Debug build sdist bdist_wheel ```bash $ ls -lFh dist/ total 7832 --rw-r--r-- 1 darnaud staff 3.4M Jun 1 17:25 trademgen-1.0.6.post1-cp38-cp38-macosx_10_15_x86_64.whl --rw-r--r-- 1 darnaud staff 441K Jun 1 17:25 trademgen-1.0.6.post1.tar.gz +-rw-r--r-- 1 darnaud staff 3.4M Jun 1 17:25 trademgen-1.0.9.post1-cp38-cp38-macosx_10_15_x86_64.whl +-rw-r--r-- 1 darnaud staff 441K Jun 1 17:25 trademgen-1.0.9.post1.tar.gz ``` * Updload the TraDemGen Python extension onto PyPi: diff --git a/autogen.sh b/autogen.sh index 94fc7ad..4c63a3a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=1 VERSION_MINOR=00 -VERSION_PATCH=8 +VERSION_PATCH=9 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]\+$"`