@@ -156,7 +156,7 @@ include(FetchContent)
156156FetchContent_Declare(
157157 cpptrace
158158 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
159- GIT_TAG v1.0.1 # <HASH or TAG>
159+ GIT_TAG v1.0.2 # <HASH or TAG>
160160)
161161FetchContent_MakeAvailable(cpptrace)
162162target_link_libraries(your_target cpptrace::cpptrace)
@@ -1278,7 +1278,7 @@ namespace cpptrace {
12781278
12791279# ABI Versioning
12801280
1281- Since cpptrace v1.0.1 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1281+ Since cpptrace v1.0.2 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
12821282are secretly under the namespace `cpptrace::v1`. This is done to allow for potential future library evolution in an
12831283ABI-friendly manner.
12841284
@@ -1306,7 +1306,7 @@ include(FetchContent)
13061306FetchContent_Declare(
13071307 cpptrace
13081308 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
1309- GIT_TAG v1.0.1 # <HASH or TAG>
1309+ GIT_TAG v1.0.2 # <HASH or TAG>
13101310)
13111311FetchContent_MakeAvailable(cpptrace)
13121312target_link_libraries(your_target cpptrace::cpptrace)
@@ -1322,7 +1322,7 @@ information.
13221322
13231323``` sh
13241324git clone https://github.com/jeremy-rifkin/cpptrace.git
1325- git checkout v1.0.1
1325+ git checkout v1.0.2
13261326mkdir cpptrace/build
13271327cd cpptrace/build
13281328cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1365,7 +1365,7 @@ you when installing new libraries.
13651365
13661366```ps1
13671367git clone https://github.com/jeremy-rifkin/cpptrace.git
1368- git checkout v1.0.1
1368+ git checkout v1.0.2
13691369mkdir cpptrace/build
13701370cd cpptrace/build
13711371cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1383,7 +1383,7 @@ To install just for the local user (or any custom prefix):
13831383
13841384``` sh
13851385git clone https://github.com/jeremy-rifkin/cpptrace.git
1386- git checkout v1.0.1
1386+ git checkout v1.0.2
13871387mkdir cpptrace/build
13881388cd cpptrace/build
13891389cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
@@ -1466,7 +1466,7 @@ make install
14661466cd ~ /scratch/cpptrace-test
14671467git clone https://github.com/jeremy-rifkin/cpptrace.git
14681468cd cpptrace
1469- git checkout v1.0.1
1469+ git checkout v1.0.2
14701470mkdir build
14711471cd build
14721472cmake .. -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
@@ -1486,7 +1486,7 @@ cpptrace and its dependencies.
14861486Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace .
14871487```
14881488[requires]
1489- cpptrace/1.0.1
1489+ cpptrace/1.0.2
14901490[generators]
14911491CMakeDeps
14921492CMakeToolchain
0 commit comments