From 6689d14c203eed390ae7bb64f56a983cfd7dff9c Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 4 Jan 2025 23:45:49 -0600 Subject: [PATCH] Bump to v0.7.5 --- CHANGELOG.md | 9 +++++++++ CMakeLists.txt | 2 +- README.md | 14 +++++++------- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 925364b..b94223d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog - [Changelog](#changelog) +- [v0.7.5](#v075) - [v0.7.4](#v074) - [v0.7.3](#v073) - [v0.7.2](#v072) @@ -24,6 +25,14 @@ - [v0.1.1](#v011) - [v0.1](#v01) +# v0.7.5 + +Fixed: +- Fixed missing `` include https://github.com/jeremy-rifkin/cpptrace/pull/202 +- Added `__cdecl` to a terminate handler to appease MSVC under some configurations https://github.com/jeremy-rifkin/cpptrace/issues/197 +- Set C++ standard for cmake support checks https://github.com/jeremy-rifkin/cpptrace/issues/200 +- Changed hyphens to underscores for cmake component names due to cpack issue https://github.com/jeremy-rifkin/cpptrace/issues/203 + # v0.7.4 Added: diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a1679d..f766186 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(package_name "cpptrace") project( cpptrace - VERSION 0.7.4 + VERSION 0.7.5 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 3c2749b..8a9fd95 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.4 # + GIT_TAG v0.7.5 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -816,7 +816,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG v0.7.4 # + GIT_TAG v0.7.5 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace::cpptrace) @@ -832,7 +832,7 @@ information. ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.7.4 +git checkout v0.7.5 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -875,7 +875,7 @@ you when installing new libraries. ```ps1 git clone https://github.com/jeremy-rifkin/cpptrace.git -git checkout v0.7.4 +git checkout v0.7.5 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -893,7 +893,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.4 +git checkout v0.7.5 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever @@ -976,7 +976,7 @@ make install cd ~/scratch/cpptrace-test git clone https://github.com/jeremy-rifkin/cpptrace.git cd cpptrace -git checkout v0.7.4 +git checkout v0.7.5 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 @@ -996,7 +996,7 @@ cpptrace and its dependencies. Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace. ``` [requires] -cpptrace/0.7.4 +cpptrace/0.7.5 [generators] CMakeDeps CMakeToolchain