From b3b3cc0b1452137e2a3d1ddc2f6a3de898ec164d Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 30 Nov 2022 16:48:41 +0100 Subject: [PATCH] [Release] Release of version 0.07.12 --- .gitignore | 1 + CMakeLists.txt | 2 +- ChangeLog | 3 +++ NEWS | 4 ++++ README.md | 2 +- autogen.sh | 2 +- opentrep/basic/BasParserTypes.hpp | 4 ++-- setup.py | 2 +- 8 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 5d0529e5..26ef4cfa 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,6 @@ tmp /build2/ /.tox/ /MANIFEST +/MANIFEST.in /.python-version *.pyc diff --git a/CMakeLists.txt b/CMakeLists.txt index 6df3c1e6..bdac7bcc 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 11) +set_project_versions (0 07 12) ## # Project options diff --git a/ChangeLog b/ChangeLog index 49a16ed3..daed648e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* Wed Nov 30 2022 Denis Arnaud 0.07.12 +- Fixed deprecated Boost.Phoenix/Boost.Spirit header + * Sun Jun 26 2022 Denis Arnaud 0.07.11 - Added support for Python 3.11 diff --git a/NEWS b/NEWS index bb75f730..c7d71d69 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* 2022-11-30: +- Version 0.07.12 +- Fixed deprecated Boost.Phoenix/Boost.Spirit header + * 2022-06-26: - Version 0.07.11 - Added support for Python 3.11 diff --git a/README.md b/README.md index 67a8183c..2a765d98 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.11" +export TREP_VER="0.07.12" 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 0b944467..25ed7472 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ fi # VERSION_MAJOR=0 VERSION_MINOR=07 -VERSION_PATCH=11 +VERSION_PATCH=12 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]\+$"` diff --git a/opentrep/basic/BasParserTypes.hpp b/opentrep/basic/BasParserTypes.hpp index 0be33c75..631b5baf 100644 --- a/opentrep/basic/BasParserTypes.hpp +++ b/opentrep/basic/BasParserTypes.hpp @@ -8,8 +8,8 @@ #include // Boost Spirit (Parsing) #include -#include -#include +#include +#include #include #include // OpenTREP diff --git a/setup.py b/setup.py index 436bd0c8..bcdfb310 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup ( name='opentrep', - version='0.7.10.post2', + version='0.7.11', author='Denis Arnaud', author_email='denis.arnaud_pypi@m4x.org', description=('''Simple Python wrapper for OpenTREP'''),