diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a147d4..6df3c1e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake) project (opentrep) set_project_names (opentrep OpenTREP) set_project_brief ("C++ Open Travel Request Parsing Library") -set_project_versions (0 07 10) +set_project_versions (0 07 11) ## # Project options diff --git a/ChangeLog b/ChangeLog index 7fe239b0..49a16ed3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Sun Jun 26 2022 Denis Arnaud 0.07.11 +- Added support for Python 3.11 + * Sun Aug 15 2021 Denis Arnaud 0.07.10 - Fixed an Boost.Spirit issue having appeared with Boost 1.76. There is still an issue with Boost.Python, at least on MacOS. diff --git a/NEWS b/NEWS index f9fecdd1..bb75f730 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2022-06-26: +- Version 0.07.11 +- Added support for Python 3.11 + * 2021-08-15: - Version 0.07.10 - Fixed an Boost.Spirit issue having appeared with Boost 1.76. diff --git a/README.md b/README.md index a3a7c592..67a8183c 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,7 @@ To customize OpenTREP to your environment, you can alter the installation directory: ```bash export INSTALL_BASEDIR="${HOME}/dev/deliveries" -export TREP_VER="0.07.10" +export TREP_VER="0.07.11" if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; else LIBSUFFIX=""; fi export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX" ``` diff --git a/autogen.sh b/autogen.sh index 2a52fc53..0b944467 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=0 VERSION_MINOR=07 -VERSION_PATCH=10 +VERSION_PATCH=11 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]\+$"`