Skip to content

Commit 7543677

Browse files
committed
Bump to v0.6.1
1 parent bb83fa9 commit 7543677

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.md

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

33
- [Changelog](#changelog)
4+
- [v0.6.1](#v061)
45
- [v0.6.0](#v060)
56
- [v0.5.4](#v054)
67
- [v0.5.3](#v053)
@@ -16,6 +17,11 @@
1617
- [v0.1.1](#v011)
1718
- [v0.1](#v01)
1819

20+
# v0.6.1
21+
22+
Fixes:
23+
- Fix for detection of `dladdr1` and `_dl_find_object` support
24+
1925
# v0.6.0
2026

2127
New:

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.6.0
12+
VERSION 0.6.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
@@ -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.6.0 # <HASH or TAG>
110+
GIT_TAG v0.6.1 # <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.6.0 # <HASH or TAG>
599+
GIT_TAG v0.6.1 # <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.6.0
615+
git checkout v0.6.1
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.6.0
658+
git checkout v0.6.1
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.6.0
676+
git checkout v0.6.1
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.6.0
759+
git checkout v0.6.1
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.6.0
779+
cpptrace/0.6.1
780780
[generators]
781781
CMakeDeps
782782
CMakeToolchain

0 commit comments

Comments
 (0)