Skip to content

Commit

Permalink
[Release] Release of version 0.07.12
Browse files Browse the repository at this point in the history
  • Loading branch information
da115115 committed Nov 30, 2022
1 parent 692e417 commit b3b3cc0
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ tmp
/build2/
/.tox/
/MANIFEST
/MANIFEST.in
/.python-version
*.pyc
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Wed Nov 30 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.12
- Fixed deprecated Boost.Phoenix/Boost.Spirit header

* Sun Jun 26 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.11
- Added support for Python 3.11

Expand Down
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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]\+$"`

Expand Down
4 changes: 2 additions & 2 deletions opentrep/basic/BasParserTypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#include <string>
// Boost Spirit (Parsing)
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/operator.hpp>
#include <boost/spirit/include/support_multi_pass.hpp>
#include <boost/spirit/include/classic_position_iterator.hpp>
// OpenTREP
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'''),
Expand Down

0 comments on commit b3b3cc0

Please sign in to comment.