Skip to content

Commit c37b5ed

Browse files
committed
Bump to v0.8.2
1 parent a32e22a commit c37b5ed

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

CHANGELOG.md

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

33
- [Changelog](#changelog)
4+
- [v0.8.2](#v082)
45
- [v0.8.1](#v081)
56
- [v0.8.0](#v080)
67
- [v0.7.5](#v075)
@@ -27,6 +28,14 @@
2728
- [v0.1.1](#v011)
2829
- [v0.1](#v01)
2930

31+
# v0.8.2
32+
33+
Fixed:
34+
- Fixed printing of internal error messages when an object file can't be loaded, mainly affecting MacOS https://github.com/jeremy-rifkin/cpptrace/issues/217
35+
36+
Other:
37+
- Bumped zstd via FetchContent to 1.5.7
38+
3039
# v0.8.1
3140

3241
Fixed:

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.8.1
12+
VERSION 0.8.2
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
@@ -139,7 +139,7 @@ include(FetchContent)
139139
FetchContent_Declare(
140140
cpptrace
141141
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
142-
GIT_TAG v0.8.1 # <HASH or TAG>
142+
GIT_TAG v0.8.2 # <HASH or TAG>
143143
)
144144
FetchContent_MakeAvailable(cpptrace)
145145
target_link_libraries(your_target cpptrace::cpptrace)
@@ -905,7 +905,7 @@ include(FetchContent)
905905
FetchContent_Declare(
906906
cpptrace
907907
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
908-
GIT_TAG v0.8.1 # <HASH or TAG>
908+
GIT_TAG v0.8.2 # <HASH or TAG>
909909
)
910910
FetchContent_MakeAvailable(cpptrace)
911911
target_link_libraries(your_target cpptrace::cpptrace)
@@ -921,7 +921,7 @@ information.
921921

922922
```sh
923923
git clone https://github.com/jeremy-rifkin/cpptrace.git
924-
git checkout v0.8.1
924+
git checkout v0.8.2
925925
mkdir cpptrace/build
926926
cd cpptrace/build
927927
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -964,7 +964,7 @@ you when installing new libraries.
964964
965965
```ps1
966966
git clone https://github.com/jeremy-rifkin/cpptrace.git
967-
git checkout v0.8.1
967+
git checkout v0.8.2
968968
mkdir cpptrace/build
969969
cd cpptrace/build
970970
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -982,7 +982,7 @@ To install just for the local user (or any custom prefix):
982982

983983
```sh
984984
git clone https://github.com/jeremy-rifkin/cpptrace.git
985-
git checkout v0.8.1
985+
git checkout v0.8.2
986986
mkdir cpptrace/build
987987
cd cpptrace/build
988988
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -1065,7 +1065,7 @@ make install
10651065
cd ~/scratch/cpptrace-test
10661066
git clone https://github.com/jeremy-rifkin/cpptrace.git
10671067
cd cpptrace
1068-
git checkout v0.8.1
1068+
git checkout v0.8.2
10691069
mkdir build
10701070
cd build
10711071
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
@@ -1085,7 +1085,7 @@ cpptrace and its dependencies.
10851085
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
10861086
```
10871087
[requires]
1088-
cpptrace/0.8.1
1088+
cpptrace/0.8.2
10891089
[generators]
10901090
CMakeDeps
10911091
CMakeToolchain

0 commit comments

Comments
 (0)