diff --git a/CHANGELOG.md b/CHANGELOG.md index b066605..2a371a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog - [Changelog](#changelog) +- [v0.7.0](#v070) - [v0.6.3](#v063) - [v0.6.2](#v062) - [v0.6.1](#v061) @@ -19,6 +20,22 @@ - [v0.1.1](#v011) - [v0.1](#v01) +# v0.7.0 + +Added +- Added `cpptrace::from_current_exception()` and associated exception handler macros to allow tracing of all exceptions, + even without cpptrace traced exception objects. + +Fixes: +- Fixed issue with using `resolve_safe_object_frame` on `safe_object_frame`s with empty paths +- Fixed handling of dwarf 4 rangelist base addresses when a `DW_AT_low_pc` is not present +- Fixed use of `-g` with MSVC + +Other changes: +- Bazel is now supported on linux (https://github.com/jeremy-rifkin/cpptrace/pull/153) +- More work on testing +- Some internal refactoring + # v0.6.3 Added: diff --git a/CMakeLists.txt b/CMakeLists.txt index 17dab79..8d34596 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(package_name "cpptrace") project( cpptrace - VERSION 0.6.3 + VERSION 0.7.0 DESCRIPTION "Simple, portable, and self-contained stacktrace library for C++11 and newer " HOMEPAGE_URL "https://github.com/jeremy-rifkin/cpptrace" LANGUAGES C CXX diff --git a/README.md b/README.md index 24ea0c6..c5879ac 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG v0.6.3 # + GIT_TAG v0.7.0 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -790,7 +790,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG v0.6.3 # + GIT_TAG v0.7.0 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -806,7 +806,7 @@ information. ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.6.3 +git checkout v0.7.0 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -849,7 +849,7 @@ you when installing new libraries. ```ps1 git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.6.3 +git checkout v0.7.0 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -867,7 +867,7 @@ To install just for the local user (or any custom prefix): ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.6.3 +git checkout v0.7.0 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever @@ -950,7 +950,7 @@ make install cd ~/scratch/cpptrace-test git clone https://github.com/jeremy-rifkin/cpptrace.git cd cpptrace -git checkout v0.6.3 +git checkout v0.7.0 mkdir build cd build 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 @@ -970,7 +970,7 @@ cpptrace and its dependencies. Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace. ``` [requires] -cpptrace/0.6.3 +cpptrace/0.7.0 [generators] CMakeDeps CMakeToolchain