@@ -156,7 +156,7 @@ include(FetchContent)
156
156
FetchContent_Declare(
157
157
cpptrace
158
158
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
159
- GIT_TAG v1.0.0 # <HASH or TAG>
159
+ GIT_TAG v1.0.1 # <HASH or TAG>
160
160
)
161
161
FetchContent_MakeAvailable(cpptrace)
162
162
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1276,7 +1276,7 @@ namespace cpptrace {
1276
1276
1277
1277
# ABI Versioning
1278
1278
1279
- Since cpptrace v1.0.0 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1279
+ Since cpptrace v1.0.1 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1280
1280
are secretly under the namespace `cpptrace::v1`. This is done to allow for potential future library evolution in an
1281
1281
ABI-friendly manner.
1282
1282
@@ -1304,7 +1304,7 @@ include(FetchContent)
1304
1304
FetchContent_Declare(
1305
1305
cpptrace
1306
1306
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
1307
- GIT_TAG v1.0.0 # <HASH or TAG>
1307
+ GIT_TAG v1.0.1 # <HASH or TAG>
1308
1308
)
1309
1309
FetchContent_MakeAvailable(cpptrace)
1310
1310
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1320,7 +1320,7 @@ information.
1320
1320
1321
1321
``` sh
1322
1322
git clone https://github.com/jeremy-rifkin/cpptrace.git
1323
- git checkout v1.0.0
1323
+ git checkout v1.0.1
1324
1324
mkdir cpptrace/build
1325
1325
cd cpptrace/build
1326
1326
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1363,7 +1363,7 @@ you when installing new libraries.
1363
1363
1364
1364
```ps1
1365
1365
git clone https://github.com/jeremy-rifkin/cpptrace.git
1366
- git checkout v1.0.0
1366
+ git checkout v1.0.1
1367
1367
mkdir cpptrace/build
1368
1368
cd cpptrace/build
1369
1369
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1381,7 +1381,7 @@ To install just for the local user (or any custom prefix):
1381
1381
1382
1382
``` sh
1383
1383
git clone https://github.com/jeremy-rifkin/cpptrace.git
1384
- git checkout v1.0.0
1384
+ git checkout v1.0.1
1385
1385
mkdir cpptrace/build
1386
1386
cd cpptrace/build
1387
1387
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
@@ -1464,7 +1464,7 @@ make install
1464
1464
cd ~ /scratch/cpptrace-test
1465
1465
git clone https://github.com/jeremy-rifkin/cpptrace.git
1466
1466
cd cpptrace
1467
- git checkout v1.0.0
1467
+ git checkout v1.0.1
1468
1468
mkdir build
1469
1469
cd build
1470
1470
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCPPTRACE_USE_EXTERNAL_LIBDWARF=On -DCMAKE_PREFIX_PATH=~ /scratch/cpptrace-test/resources -DCMAKE_INSTALL_PREFIX=~ /scratch/cpptrace-test/resources
@@ -1484,7 +1484,7 @@ cpptrace and its dependencies.
1484
1484
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace .
1485
1485
```
1486
1486
[requires]
1487
- cpptrace/1.0.0
1487
+ cpptrace/1.0.1
1488
1488
[generators]
1489
1489
CMakeDeps
1490
1490
CMakeToolchain
0 commit comments