diff --git a/CHANGELOG.md b/CHANGELOG.md index 83351b6..742f0a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog - [Changelog](#changelog) +- [v0.7.3](#v073) - [v0.7.2](#v072) - [v0.7.1](#v071) - [v0.7.0](#v070) @@ -22,6 +23,25 @@ - [v0.1.1](#v011) - [v0.1](#v01) +# v0.7.3 + +Fixed: +- Fixed missing include affecting macos https://github.com/jeremy-rifkin/cpptrace/pull/183 +- Fixed issue with cmake not using the ccache program found by `find_program` https://github.com/jeremy-rifkin/cpptrace/pull/184 +- Fixed missing include and warnings affecting mingw https://github.com/jeremy-rifkin/cpptrace/pull/186 +- Fixed issue with identifying inlined call frames when the `DW_TAG_inlined_subroutine` is under a `DW_TAG_lexical_block` +- Fixed a typo in the README +- Improved unittest support on various configurations +- Improved unittest robustness under LTO +- Fixed bug signal_demo in the event `fork()` fails + +Added: +- Added color overload for `stacktrace_frame::to_string` +- Added CMake `export()` definition for cpptrace as well as a definition for libdwarf which currently doesn't provide one + +Changed: +- Updated documentation surrounding the signal safe API + # v0.7.2 Changes: diff --git a/CMakeLists.txt b/CMakeLists.txt index 91bb853..601e632 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(package_name "cpptrace") project( cpptrace - VERSION 0.7.2 + VERSION 0.7.3 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 aae1625..364a85f 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG v0.7.2 # + GIT_TAG v0.7.3 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -814,7 +814,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG v0.7.2 # + GIT_TAG v0.7.3 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -830,7 +830,7 @@ information. ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.7.2 +git checkout v0.7.3 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -873,7 +873,7 @@ you when installing new libraries. ```ps1 git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.7.2 +git checkout v0.7.3 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -891,7 +891,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.7.2 +git checkout v0.7.3 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever @@ -974,7 +974,7 @@ make install cd ~/scratch/cpptrace-test git clone https://github.com/jeremy-rifkin/cpptrace.git cd cpptrace -git checkout v0.7.2 +git checkout v0.7.3 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 @@ -994,7 +994,7 @@ cpptrace and its dependencies. Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace. ``` [requires] -cpptrace/0.7.2 +cpptrace/0.7.3 [generators] CMakeDeps CMakeToolchain