@@ -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.0 # <HASH or TAG>
159+ GIT_TAG v1.0.1 # <HASH or TAG>
160160)
161161FetchContent_MakeAvailable(cpptrace)
162162target_link_libraries(your_target cpptrace::cpptrace)
@@ -1276,7 +1276,7 @@ namespace cpptrace {
12761276
12771277# ABI Versioning
12781278
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
12801280are secretly under the namespace `cpptrace::v1`. This is done to allow for potential future library evolution in an
12811281ABI-friendly manner.
12821282
@@ -1304,7 +1304,7 @@ include(FetchContent)
13041304FetchContent_Declare(
13051305 cpptrace
13061306 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>
13081308)
13091309FetchContent_MakeAvailable(cpptrace)
13101310target_link_libraries(your_target cpptrace::cpptrace)
@@ -1320,7 +1320,7 @@ information.
13201320
13211321``` sh
13221322git clone https://github.com/jeremy-rifkin/cpptrace.git
1323- git checkout v1.0.0
1323+ git checkout v1.0.1
13241324mkdir cpptrace/build
13251325cd cpptrace/build
13261326cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1363,7 +1363,7 @@ you when installing new libraries.
13631363
13641364```ps1
13651365git clone https://github.com/jeremy-rifkin/cpptrace.git
1366- git checkout v1.0.0
1366+ git checkout v1.0.1
13671367mkdir cpptrace/build
13681368cd cpptrace/build
13691369cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1381,7 +1381,7 @@ To install just for the local user (or any custom prefix):
13811381
13821382``` sh
13831383git clone https://github.com/jeremy-rifkin/cpptrace.git
1384- git checkout v1.0.0
1384+ git checkout v1.0.1
13851385mkdir cpptrace/build
13861386cd cpptrace/build
13871387cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
@@ -1464,7 +1464,7 @@ make install
14641464cd ~ /scratch/cpptrace-test
14651465git clone https://github.com/jeremy-rifkin/cpptrace.git
14661466cd cpptrace
1467- git checkout v1.0.0
1467+ git checkout v1.0.1
14681468mkdir build
14691469cd build
14701470cmake .. -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.
14841484Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace .
14851485```
14861486[requires]
1487- cpptrace/1.0.0
1487+ cpptrace/1.0.1
14881488[generators]
14891489CMakeDeps
14901490CMakeToolchain
0 commit comments