Skip to content

Commit 06226ee

Browse files
committed
Bump to 0.6.0
1 parent 1ab65a2 commit 06226ee

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

CHANGELOG.md

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

33
- [Changelog](#changelog)
4+
- [v0.6.0](#v060)
45
- [v0.5.4](#v054)
56
- [v0.5.3](#v053)
67
- [v0.5.2](#v052)
@@ -15,6 +16,19 @@
1516
- [v0.1.1](#v011)
1617
- [v0.1](#v01)
1718

19+
# v0.6.0
20+
21+
New:
22+
- Added a `cpptrace::system_error` utility
23+
- Added support for musl https://github.com/jeremy-rifkin/cpptrace/issues/128
24+
- Added support for split dwarf / debug fission
25+
26+
Fixes:
27+
- Fixed address formatting in stack traces
28+
- Fixed frame pointer calculation for signal frames from libunwind https://github.com/jeremy-rifkin/cpptrace/issues/123
29+
- Fixed dwarf_ranges handling of lowpc == pc causing erroneous symbol resolution
30+
- Fixed implementation of the exception helper system/reference implementation's `lazy_trace_holder`
31+
1832
# v0.5.4
1933

2034
Fixes:

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.5.4
12+
VERSION 0.6.0
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
@@ -107,7 +107,7 @@ include(FetchContent)
107107
FetchContent_Declare(
108108
cpptrace
109109
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
110-
GIT_TAG v0.5.4 # <HASH or TAG>
110+
GIT_TAG v0.6.0 # <HASH or TAG>
111111
)
112112
FetchContent_MakeAvailable(cpptrace)
113113
target_link_libraries(your_target cpptrace::cpptrace)
@@ -596,7 +596,7 @@ include(FetchContent)
596596
FetchContent_Declare(
597597
cpptrace
598598
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
599-
GIT_TAG v0.5.4 # <HASH or TAG>
599+
GIT_TAG v0.6.0 # <HASH or TAG>
600600
)
601601
FetchContent_MakeAvailable(cpptrace)
602602
target_link_libraries(your_target cpptrace::cpptrace)
@@ -612,7 +612,7 @@ information.
612612

613613
```sh
614614
git clone https://github.com/jeremy-rifkin/cpptrace.git
615-
git checkout v0.5.4
615+
git checkout v0.6.0
616616
mkdir cpptrace/build
617617
cd cpptrace/build
618618
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -655,7 +655,7 @@ you when installing new libraries.
655655
656656
```ps1
657657
git clone https://github.com/jeremy-rifkin/cpptrace.git
658-
git checkout v0.5.4
658+
git checkout v0.6.0
659659
mkdir cpptrace/build
660660
cd cpptrace/build
661661
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -673,7 +673,7 @@ To install just for the local user (or any custom prefix):
673673

674674
```sh
675675
git clone https://github.com/jeremy-rifkin/cpptrace.git
676-
git checkout v0.5.4
676+
git checkout v0.6.0
677677
mkdir cpptrace/build
678678
cd cpptrace/build
679679
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -756,7 +756,7 @@ make install
756756
cd ~/scratch/cpptrace-test
757757
git clone https://github.com/jeremy-rifkin/cpptrace.git
758758
cd cpptrace
759-
git checkout v0.5.4
759+
git checkout v0.6.0
760760
mkdir build
761761
cd build
762762
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
@@ -776,7 +776,7 @@ cpptrace and its dependencies.
776776
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
777777
```
778778
[requires]
779-
cpptrace/0.5.4
779+
cpptrace/0.6.0
780780
[generators]
781781
CMakeDeps
782782
CMakeToolchain

0 commit comments

Comments
 (0)