Skip to content

Commit e29c931

Browse files
committed
[Release 0.07.10] Release of version 0.07.10
1 parent 6eb41cf commit e29c931

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

CMakeLists.txt

+1-1
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 9)
13+
set_project_versions (0 07 10)
1414

1515
##
1616
# Project options

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Sun Aug 15 2021 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.10
2+
- Fixed an Boost.Spirit issue having appeared with Boost 1.76.
3+
There is still an issue with Boost.Python, at least on MacOS.
4+
The support for Unicode may have been dropped.
5+
16
* Sat Jun 26 2021 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.9
27
- Upgraded a few CMake support files
38

NEWS

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* 2021-08-15:
2+
- Version 0.07.10
3+
- Fixed an Boost.Spirit issue having appeared with Boost 1.76.
4+
There is still an issue with Boost.Python, at least on MacOS.
5+
The support for Unicode may have been dropped.
6+
17
* 2021-06-26:
28
- Version 0.07.9
39
- Upgraded a few CMake support files

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ GitHub generates
250250
[tar-balls on the fly for every tagged release](https://github.com/trep/opentrep/releases).
251251
For instance:
252252
```bash
253-
$ wget https://github.com/trep/opentrep/archive/opentrep-0.07.9.tar.gz
253+
$ wget https://github.com/trep/opentrep/archive/opentrep-0.07.10.tar.gz
254254
```
255255

256256
Note that SourceForge also stores some
@@ -633,7 +633,7 @@ To customize OpenTREP to your environment, you can alter
633633
the installation directory:
634634
```bash
635635
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
636-
export TREP_VER="0.07.9"
636+
export TREP_VER="0.07.10"
637637
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; else LIBSUFFIX=""; fi
638638
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
639639
```

autogen.sh

+1-1
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=9
54+
VERSION_PATCH=10
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

0 commit comments

Comments
 (0)