Skip to content

Commit 3890a70

Browse files
committed
Bump to v0.7.1
1 parent 4ed90c1 commit 3890a70

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
- [Changelog](#changelog)
4+
- [v0.7.1](#v071)
45
- [v0.7.0](#v070)
56
- [v0.6.3](#v063)
67
- [v0.6.2](#v062)
@@ -20,6 +21,26 @@
2021
- [v0.1.1](#v011)
2122
- [v0.1](#v01)
2223

24+
# v0.7.1
25+
26+
Added
27+
- Better support for finding libunwind on macos https://github.com/jeremy-rifkin/cpptrace/pull/162
28+
- Support for libbacktrace under mingw https://github.com/jeremy-rifkin/cpptrace/pull/166
29+
30+
Fixed
31+
- Computation of object address for safe object frames https://github.com/jeremy-rifkin/cpptrace/issues/169
32+
- Nested microfmt in cpptrace's namespace due to an ODR problem with libassert
33+
https://github.com/jeremy-rifkin/libassert/issues/103
34+
- Compilation on iOS https://github.com/jeremy-rifkin/cpptrace/pull/167
35+
- Compilation on old MSVC https://github.com/jeremy-rifkin/cpptrace/pull/165
36+
- Dbghelp use on 32 bit https://github.com/jeremy-rifkin/cpptrace/issues/170
37+
- Warning in brand new cmake due to FetchContent_Populate being deprecated
38+
39+
Other changes
40+
- Bumped the buffer size for execinfo and CaptureStackBackTrace to 400 frames
41+
- Switched to execinfo.h for unwinding on clang/apple clang on macos due to `_Unwind` not working with `-fno-exceptions`
42+
https://github.com/jeremy-rifkin/cpptrace/issues/161
43+
2344
# v0.7.0
2445

2546
Added

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(package_name "cpptrace")
99

1010
project(
1111
cpptrace
12-
VERSION 0.7.0
12+
VERSION 0.7.1
1313
DESCRIPTION "Simple, portable, and self-contained stacktrace library for C++11 and newer "
1414
HOMEPAGE_URL "https://github.com/jeremy-rifkin/cpptrace"
1515
LANGUAGES C CXX

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ include(FetchContent)
134134
FetchContent_Declare(
135135
cpptrace
136136
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
137-
GIT_TAG v0.7.0 # <HASH or TAG>
137+
GIT_TAG v0.7.1 # <HASH or TAG>
138138
)
139139
FetchContent_MakeAvailable(cpptrace)
140140
target_link_libraries(your_target cpptrace::cpptrace)
@@ -793,7 +793,7 @@ include(FetchContent)
793793
FetchContent_Declare(
794794
cpptrace
795795
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
796-
GIT_TAG v0.7.0 # <HASH or TAG>
796+
GIT_TAG v0.7.1 # <HASH or TAG>
797797
)
798798
FetchContent_MakeAvailable(cpptrace)
799799
target_link_libraries(your_target cpptrace::cpptrace)
@@ -809,7 +809,7 @@ information.
809809

810810
```sh
811811
git clone https://github.com/jeremy-rifkin/cpptrace.git
812-
git checkout v0.7.0
812+
git checkout v0.7.1
813813
mkdir cpptrace/build
814814
cd cpptrace/build
815815
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -852,7 +852,7 @@ you when installing new libraries.
852852
853853
```ps1
854854
git clone https://github.com/jeremy-rifkin/cpptrace.git
855-
git checkout v0.7.0
855+
git checkout v0.7.1
856856
mkdir cpptrace/build
857857
cd cpptrace/build
858858
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -870,7 +870,7 @@ To install just for the local user (or any custom prefix):
870870

871871
```sh
872872
git clone https://github.com/jeremy-rifkin/cpptrace.git
873-
git checkout v0.7.0
873+
git checkout v0.7.1
874874
mkdir cpptrace/build
875875
cd cpptrace/build
876876
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -953,7 +953,7 @@ make install
953953
cd ~/scratch/cpptrace-test
954954
git clone https://github.com/jeremy-rifkin/cpptrace.git
955955
cd cpptrace
956-
git checkout v0.7.0
956+
git checkout v0.7.1
957957
mkdir build
958958
cd build
959959
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
@@ -973,7 +973,7 @@ cpptrace and its dependencies.
973973
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
974974
```
975975
[requires]
976-
cpptrace/0.7.0
976+
cpptrace/0.7.1
977977
[generators]
978978
CMakeDeps
979979
CMakeToolchain

0 commit comments

Comments
 (0)