Skip to content

Commit b3b3cc0

Browse files
committed
[Release] Release of version 0.07.12
1 parent 692e417 commit b3b3cc0

8 files changed

Lines changed: 14 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ tmp
66
/build2/
77
/.tox/
88
/MANIFEST
9+
/MANIFEST.in
910
/.python-version
1011
*.pyc

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake)
1010
project (opentrep)
1111
set_project_names (opentrep OpenTREP)
1212
set_project_brief ("C++ Open Travel Request Parsing Library")
13-
set_project_versions (0 07 11)
13+
set_project_versions (0 07 12)
1414

1515
##
1616
# Project options

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* Wed Nov 30 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.12
2+
- Fixed deprecated Boost.Phoenix/Boost.Spirit header
3+
14
* Sun Jun 26 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.11
25
- Added support for Python 3.11
36

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 2022-11-30:
2+
- Version 0.07.12
3+
- Fixed deprecated Boost.Phoenix/Boost.Spirit header
4+
15
* 2022-06-26:
26
- Version 0.07.11
37
- Added support for Python 3.11

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ To customize OpenTREP to your environment, you can alter
583583
the installation directory:
584584
```bash
585585
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
586-
export TREP_VER="0.07.11"
586+
export TREP_VER="0.07.12"
587587
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; else LIBSUFFIX=""; fi
588588
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
589589
```

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
#
5252
VERSION_MAJOR=0
5353
VERSION_MINOR=07
54-
VERSION_PATCH=11
54+
VERSION_PATCH=12
5555
VERSION_TMP_STRING=`grep "set_project_versions" CMakeLists.txt | sed -e "s/set_project_versions.*\([0-9]\+.\+[0-9]\+.\+[0-9]\+\).\+/\1/"`
5656
VERSION_STRING=`echo "${VERSION_TMP_STRING}" | grep "^[0-9]\+.[0-9]\+.[0-9]\+$"`
5757

opentrep/basic/BasParserTypes.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
#include <string>
99
// Boost Spirit (Parsing)
1010
#include <boost/spirit/include/qi.hpp>
11-
#include <boost/spirit/include/phoenix_core.hpp>
12-
#include <boost/spirit/include/phoenix_operator.hpp>
11+
#include <boost/phoenix/core.hpp>
12+
#include <boost/phoenix/operator.hpp>
1313
#include <boost/spirit/include/support_multi_pass.hpp>
1414
#include <boost/spirit/include/classic_position_iterator.hpp>
1515
// OpenTREP

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup (
99
name='opentrep',
10-
version='0.7.10.post2',
10+
version='0.7.11',
1111
author='Denis Arnaud',
1212
author_email='denis.arnaud_pypi@m4x.org',
1313
description=('''Simple Python wrapper for OpenTREP'''),

0 commit comments

Comments
 (0)