Skip to content

Commit b0ca101

Browse files
committed
[Release 0.07.4] Release of version 0.07.4
1 parent b499c0a commit b0ca101

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
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 3)
13+
set_project_versions (0 07 4)
1414

1515
##
1616
# Project options

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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+
14
* Sat Sep 28 2019 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.3
25
- OPENTREP_SAMPLE_DIR is now exported
36

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 2019-11-10:
2+
- Version 0.07.4
3+
- FindBoost.cmake now supports older CMake versions
4+
15
* 2019-09-28:
26
- Version 0.07.3
37
- OPENTREP_SAMPLE_DIR is now exported

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ GitHub generates
205205
[tar-balls on the fly for every tagged release](https://github.com/trep/opentrep/releases).
206206
For instance:
207207
```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
209209
```
210210

211211
Note that SourceForge also stores some
@@ -434,7 +434,7 @@ To customize OpenTREP to your environment, you can alter
434434
the installation directory:
435435
```bash
436436
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
437-
export TREP_VER="0.07.3"
437+
export TREP_VER="0.07.4"
438438
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi
439439
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
440440
```
@@ -767,7 +767,7 @@ DYLD_INSERT_LIBRARIES=/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/l
767767
* A work around is to explicitly use the MacOS native Python interpreter:
768768
```bash
769769
$ /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'
771771
Xapian-based travel database/index: '/tmp/opentrep/xapian_traveldb0'
772772
SQLite database: '/tmp/opentrep/sqlite_travel.db'
773773
searchString: nce sfo

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=3
54+
VERSION_PATCH=4
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)