Skip to content

Commit 4354eb2

Browse files
committed
Bump to v0.7.3
1 parent 6945c21 commit 4354eb2

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

CHANGELOG.md

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

33
- [Changelog](#changelog)
4+
- [v0.7.3](#v073)
45
- [v0.7.2](#v072)
56
- [v0.7.1](#v071)
67
- [v0.7.0](#v070)
@@ -22,6 +23,25 @@
2223
- [v0.1.1](#v011)
2324
- [v0.1](#v01)
2425

26+
# v0.7.3
27+
28+
Fixed:
29+
- Fixed missing include affecting macos https://github.com/jeremy-rifkin/cpptrace/pull/183
30+
- Fixed issue with cmake not using the ccache program found by `find_program` https://github.com/jeremy-rifkin/cpptrace/pull/184
31+
- Fixed missing include and warnings affecting mingw https://github.com/jeremy-rifkin/cpptrace/pull/186
32+
- Fixed issue with identifying inlined call frames when the `DW_TAG_inlined_subroutine` is under a `DW_TAG_lexical_block`
33+
- Fixed a typo in the README
34+
- Improved unittest support on various configurations
35+
- Improved unittest robustness under LTO
36+
- Fixed bug signal_demo in the event `fork()` fails
37+
38+
Added:
39+
- Added color overload for `stacktrace_frame::to_string`
40+
- Added CMake `export()` definition for cpptrace as well as a definition for libdwarf which currently doesn't provide one
41+
42+
Changed:
43+
- Updated documentation surrounding the signal safe API
44+
2545
# v0.7.2
2646

2747
Changes:

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.2
12+
VERSION 0.7.3
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
@@ -136,7 +136,7 @@ include(FetchContent)
136136
FetchContent_Declare(
137137
cpptrace
138138
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
139-
GIT_TAG v0.7.2 # <HASH or TAG>
139+
GIT_TAG v0.7.3 # <HASH or TAG>
140140
)
141141
FetchContent_MakeAvailable(cpptrace)
142142
target_link_libraries(your_target cpptrace::cpptrace)
@@ -814,7 +814,7 @@ include(FetchContent)
814814
FetchContent_Declare(
815815
cpptrace
816816
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
817-
GIT_TAG v0.7.2 # <HASH or TAG>
817+
GIT_TAG v0.7.3 # <HASH or TAG>
818818
)
819819
FetchContent_MakeAvailable(cpptrace)
820820
target_link_libraries(your_target cpptrace::cpptrace)
@@ -830,7 +830,7 @@ information.
830830

831831
```sh
832832
git clone https://github.com/jeremy-rifkin/cpptrace.git
833-
git checkout v0.7.2
833+
git checkout v0.7.3
834834
mkdir cpptrace/build
835835
cd cpptrace/build
836836
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -873,7 +873,7 @@ you when installing new libraries.
873873
874874
```ps1
875875
git clone https://github.com/jeremy-rifkin/cpptrace.git
876-
git checkout v0.7.2
876+
git checkout v0.7.3
877877
mkdir cpptrace/build
878878
cd cpptrace/build
879879
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -891,7 +891,7 @@ To install just for the local user (or any custom prefix):
891891

892892
```sh
893893
git clone https://github.com/jeremy-rifkin/cpptrace.git
894-
git checkout v0.7.2
894+
git checkout v0.7.3
895895
mkdir cpptrace/build
896896
cd cpptrace/build
897897
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -974,7 +974,7 @@ make install
974974
cd ~/scratch/cpptrace-test
975975
git clone https://github.com/jeremy-rifkin/cpptrace.git
976976
cd cpptrace
977-
git checkout v0.7.2
977+
git checkout v0.7.3
978978
mkdir build
979979
cd build
980980
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.
994994
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
995995
```
996996
[requires]
997-
cpptrace/0.7.2
997+
cpptrace/0.7.3
998998
[generators]
999999
CMakeDeps
10001000
CMakeToolchain

0 commit comments

Comments
 (0)