Skip to content

Commit 52d0ab0

Browse files
committed
[Release] Release of version 0.07.13
1 parent 15954a4 commit 52d0ab0

File tree

5 files changed

+26
-19
lines changed

5 files changed

+26
-19
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 12)
13+
set_project_versions (0 07 13)
1414

1515
##
1616
# Project options

ChangeLog

+3
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.13
2+
- Upgraded a few CMake support files
3+
14
* Wed Nov 30 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> 0.07.12
25
- Fixed deprecated Boost.Phoenix/Boost.Spirit header
36

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 2023-05-01:
2+
- Version 0.07.13
3+
- Upgraded a few CMake support files
4+
15
* 2022-11-30:
26
- Version 0.07.12
37
- Fixed deprecated Boost.Phoenix/Boost.Spirit header

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ To customize OpenTREP to your environment, you can alter
599599
the installation directory:
600600
```bash
601601
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
602-
export TREP_VER="0.07.12"
602+
export TREP_VER="0.07.13"
603603
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; else LIBSUFFIX=""; fi
604604
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
605605
```
@@ -924,8 +924,8 @@ PYTHONPATH=${INSTALL_DIR}/lib${LIBSUFFIX}:${INSTALL_BASEDIR}/lib${LIBSUFFIX}/pyt
924924
# Trouble-shooting Python issues on MacOS
925925

926926
## Interceptors not installed / late
927-
* On some versions of MacOS (_e.g._, with 12.0 aka Monterey or 11.1 aka Big Sur),
928-
there may be some strange issue related to interceptors:
927+
* On some versions of MacOS (_e.g._, with 13.x aka Venturai, 12.x aka Monterey
928+
or 11.x aka Big Sur), there may be some strange issue related to interceptors:
929929
```bash
930930
$ ./opentrep/python/pyopentrep -d /tmp/opentrep/xapian_traveldb "nce sfo"
931931
==217==ERROR: Interceptors are not working. This may be because AddressSanitizer is loaded too late (e.g. via dlopen). Please launch the executable with:
@@ -1006,17 +1006,17 @@ $ python -m pip install -U pyjq pyyaml
10061006
$ python -mpip install -U opentrep
10071007
Defaulting to user installation because normal site-packages is not writeable
10081008
Collecting opentrep
1009-
Using cached opentrep-0.7.12.tar.gz (1.7 MB)
1009+
Using cached opentrep-0.7.13.tar.gz (1.7 MB)
10101010
Installing build dependencies ... done
10111011
Getting requirements to build wheel ... done
10121012
Preparing wheel metadata ... done
10131013
Building wheels for collected packages: opentrep
10141014
Building wheel for opentrep (PEP 517) ... done
1015-
Created wheel for opentrep: filename=opentrep-0.7.12-cp39-cp39-linux_x86_64.whl size=3060796 sha256=6362e3a86af016b251fe33b9f76db17322ec15a60575082f31f6b719ba2cf97f
1015+
Created wheel for opentrep: filename=opentrep-0.7.13-cp39-cp39-linux_x86_64.whl size=3060796 sha256=6362e3a86af016b251fe33b9f76db17322ec15a60575082f31f6b719ba2cf97f
10161016
Stored in directory: ~/.cache/pip/wheels/82/b3/7c/f026b883cc204eefab1588f5e68661f78fec25395277bd221d
10171017
Successfully built opentrep
10181018
Installing collected packages: opentrep
1019-
Successfully installed opentrep-0.7.12
1019+
Successfully installed opentrep-0.7.13
10201020
```
10211021

10221022
* Set the `LD_LIBRARY_PATH`/`DYLD_LIBRARY_PATH` and `PYTHONPATH`
@@ -1054,8 +1054,8 @@ $ python setup.py --build-type=Debug build sdist bdist_wheel # the build takes a
10541054
$ ls -lFh _skbuild/*-x86_64-3.9/ dist/
10551055
dist/:
10561056
total 24408
1057-
-rw-r--r-- 1 user staff 9.6M Jan 16 19:10 opentrep-0.7.12.post2-cp39-cp39-macosx_12_0_x86_64.whl
1058-
-rw-r--r-- 1 user staff 1.6M Jan 16 19:10 opentrep-0.7.12.post2.tar.gz
1057+
-rw-r--r-- 1 user staff 9.6M Jan 16 19:10 opentrep-0.7.13.post2-cp39-cp39-macosx_13_0_x86_64.whl
1058+
-rw-r--r-- 1 user staff 1.6M Jan 16 19:10 opentrep-0.7.13.post2.tar.gz
10591059

10601060
_skbuild/*-x86_64-3.9/:
10611061
-rw-r--r-- 1 user staff 0B Jan 10 19:10 _skbuild_MANIFEST
@@ -1066,7 +1066,7 @@ drwxr-xr-x 3 user staff 96B Jan 10 19:10 setuptools/
10661066

10671067
* Set the `LD_LIBRARY_PATH` and `PYTHONPATH` environment variables:
10681068
```bash
1069-
$ INST_DIR=${PWD}/_skbuild/macosx-12.0-x86_64-3.9/cmake-install
1069+
$ INST_DIR=${PWD}/_skbuild/macosx-13.0-x86_64-3.9/cmake-install
10701070
TREPBINDIR=${INST_DIR}/bin
10711071
OPTDPOR=${INST_DIR}/share/opentrep/data/por/test_optd_por_public.csv
10721072
export LD_LIBRARY_PATH=${INST_DIR}/lib
@@ -1084,13 +1084,13 @@ $ docker run --rm -e PLAT=manylinux2010_x86_64 -v `pwd`:/io scikitbuild/manylinu
10841084
user@laptop$ PYPIURL="https://test.pypi.org"
10851085
user@laptop$ twine upload -u __token__ --repository-url ${PYPIURL}/legacy/ dist/*
10861086
Uploading distributions to https://test.pypi.org/legacy/
1087-
Uploading opentrep-0.7.12-cp39-cp39-macosx_12_0_x86_64.whl
1087+
Uploading opentrep-0.7.13-cp39-cp39-macosx_13_0_x86_64.whl
10881088
100%|█████████████████████████████████████████████████████████████████████| 9.86M/9.86M [01:00<00:00, 172kB/s]
1089-
Uploading opentrep-0.7.12.tar.gz
1089+
Uploading opentrep-0.7.13.tar.gz
10901090
100%|█████████████████████████████████████████████████████████████████████| 1.65M/1.65M [00:12<00:00, 139kB/s]
10911091

10921092
View at:
1093-
https://test.pypi.org/project/opentrep/0.7.12/
1093+
https://test.pypi.org/project/opentrep/0.7.13/
10941094
```
10951095

10961096
* Upload/release the Python packages onto the
@@ -1101,13 +1101,13 @@ user@laptop$ keyring set ${PYPIURL}/ __token__
11011101
Password for '__token__' in '${PYPIURL}/':
11021102
user@laptop$ twine upload -u __token__ --repository-url ${PYPIURL}/legacy/ dist/*
11031103
Uploading distributions to https://upload.pypi.org/legacy/
1104-
Uploading opentrep-0.7.12.post2-cp39-cp39-macosx_12_0_x86_64.whl
1104+
Uploading opentrep-0.7.13.post2-cp39-cp39-macosx_13_0_x86_64.whl
11051105
100%|█████████████████████████████████████████████████████████████████████| 9.86M/9.86M [01:00<00:00, 172kB/s]
1106-
Uploading opentrep-0.7.12.post2.tar.gz
1106+
Uploading opentrep-0.7.13.post2.tar.gz
11071107
100%|█████████████████████████████████████████████████████████████████████| 1.65M/1.65M [00:12<00:00, 139kB/s]
11081108

11091109
View at:
1110-
https://pypi.org/project/opentrep/0.7.12.post2/
1110+
https://pypi.org/project/opentrep/0.7.13.post2/
11111111
```
11121112
11131113
## Test the OpenTREP Python extension
@@ -1149,7 +1149,7 @@ $ python3 -mpip install -U opentrep
11491149
```bash
11501150
$ python -mpip show opentrep
11511151
Name: opentrep
1152-
Version: 0.7.12
1152+
Version: 0.7.13
11531153
...
11541154
Location: ~/.pyenv/versions/3.10.1/lib/python3.9/site-packages
11551155
Requires: protobuf
@@ -1158,7 +1158,7 @@ Requires: protobuf
11581158
```bash
11591159
$ python3 -mpip show opentrep
11601160
Name: opentrep
1161-
Version: 0.7.12
1161+
Version: 0.7.13
11621162
...
11631163
Location: /usr/local/lib/python3.9/site-packages
11641164
Requires: protobuf

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=12
54+
VERSION_PATCH=13
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)