File tree 5 files changed +12
-5
lines changed
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake)
10
10
project (opentrep)
11
11
set_project_names (opentrep OpenTREP)
12
12
set_project_brief ("C++ Open Travel Request Parsing Library" )
13
- set_project_versions (0 07 3 )
13
+ set_project_versions (0 07 4 )
14
14
15
15
##
16
16
# Project options
Original file line number Diff line number Diff line change
1
+ * Sun Nov 10 2019 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.4
2
+ - FindBoost.cmake now supports older CMake versions
3
+
1
4
* Sat Sep 28 2019 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.3
2
5
- OPENTREP_SAMPLE_DIR is now exported
3
6
Original file line number Diff line number Diff line change
1
+ * 2019-11-10:
2
+ - Version 0.07.4
3
+ - FindBoost.cmake now supports older CMake versions
4
+
1
5
* 2019-09-28:
2
6
- Version 0.07.3
3
7
- OPENTREP_SAMPLE_DIR is now exported
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ GitHub generates
205
205
[ tar-balls on the fly for every tagged release] ( https://github.com/trep/opentrep/releases ) .
206
206
For instance:
207
207
``` bash
208
- $ wget https://github.com/trep/opentrep/archive/opentrep-0.07.3 .tar.gz
208
+ $ wget https://github.com/trep/opentrep/archive/opentrep-0.07.4 .tar.gz
209
209
```
210
210
211
211
Note that SourceForge also stores some
@@ -434,7 +434,7 @@ To customize OpenTREP to your environment, you can alter
434
434
the installation directory:
435
435
``` bash
436
436
export INSTALL_BASEDIR=" ${HOME} /dev/deliveries"
437
- export TREP_VER=" 0.07.3 "
437
+ export TREP_VER=" 0.07.4 "
438
438
if [ -d /usr/lib64 ]; then LIBSUFFIX=" 64" ; fi
439
439
export LIBSUFFIX_4_CMAKE=" -DLIB_SUFFIX=$LIBSUFFIX "
440
440
```
@@ -767,7 +767,7 @@ DYLD_INSERT_LIBRARIES=/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/l
767
767
* A work around is to explicitly use the MacOS native Python interpreter:
768
768
``` bash
769
769
$ /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python ./opentrep/python/pyopentrep -d /tmp/opentrep/xapian_traveldb " nce sfo"
770
- OPTD-maintained list of POR (points of reference): ' ~/dev/deliveries/opentrep-0.07.3 /share/opentrep/data/por/test_optd_por_public.csv'
770
+ OPTD-maintained list of POR (points of reference): ' ~/dev/deliveries/opentrep-0.07.4 /share/opentrep/data/por/test_optd_por_public.csv'
771
771
Xapian-based travel database/index: ' /tmp/opentrep/xapian_traveldb0'
772
772
SQLite database: ' /tmp/opentrep/sqlite_travel.db'
773
773
searchString: nce sfo
Original file line number Diff line number Diff line change 51
51
#
52
52
VERSION_MAJOR=0
53
53
VERSION_MINOR=07
54
- VERSION_PATCH=3
54
+ VERSION_PATCH=4
55
55
VERSION_TMP_STRING=` grep " set_project_versions" CMakeLists.txt | sed -e " s/set_project_versions.*\([0-9]\+.\+[0-9]\+.\+[0-9]\+\).\+/\1/" `
56
56
VERSION_STRING=` echo " ${VERSION_TMP_STRING} " | grep " ^[0-9]\+.[0-9]\+.[0-9]\+$" `
57
57
You can’t perform that action at this time.
0 commit comments