Skip to content

Commit 6689d14

Browse files
committed
Bump to v0.7.5
1 parent f42ed35 commit 6689d14

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.7.5](#v075)
45
- [v0.7.4](#v074)
56
- [v0.7.3](#v073)
67
- [v0.7.2](#v072)
@@ -24,6 +25,14 @@
2425
- [v0.1.1](#v011)
2526
- [v0.1](#v01)
2627

28+
# v0.7.5
29+
30+
Fixed:
31+
- Fixed missing `<typeinfo>` include https://github.com/jeremy-rifkin/cpptrace/pull/202
32+
- Added `__cdecl` to a terminate handler to appease MSVC under some configurations https://github.com/jeremy-rifkin/cpptrace/issues/197
33+
- Set C++ standard for cmake support checks https://github.com/jeremy-rifkin/cpptrace/issues/200
34+
- Changed hyphens to underscores for cmake component names due to cpack issue https://github.com/jeremy-rifkin/cpptrace/issues/203
35+
2736
# v0.7.4
2837

2938
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.4
12+
VERSION 0.7.5
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.4 # <HASH or TAG>
139+
GIT_TAG v0.7.5 # <HASH or TAG>
140140
)
141141
FetchContent_MakeAvailable(cpptrace)
142142
target_link_libraries(your_target cpptrace::cpptrace)
@@ -816,7 +816,7 @@ include(FetchContent)
816816
FetchContent_Declare(
817817
cpptrace
818818
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
819-
GIT_TAG v0.7.4 # <HASH or TAG>
819+
GIT_TAG v0.7.5 # <HASH or TAG>
820820
)
821821
FetchContent_MakeAvailable(cpptrace)
822822
target_link_libraries(your_target cpptrace::cpptrace)
@@ -832,7 +832,7 @@ information.
832832

833833
```sh
834834
git clone https://github.com/jeremy-rifkin/cpptrace.git
835-
git checkout v0.7.4
835+
git checkout v0.7.5
836836
mkdir cpptrace/build
837837
cd cpptrace/build
838838
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -875,7 +875,7 @@ you when installing new libraries.
875875
876876
```ps1
877877
git clone https://github.com/jeremy-rifkin/cpptrace.git
878-
git checkout v0.7.4
878+
git checkout v0.7.5
879879
mkdir cpptrace/build
880880
cd cpptrace/build
881881
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -893,7 +893,7 @@ To install just for the local user (or any custom prefix):
893893

894894
```sh
895895
git clone https://github.com/jeremy-rifkin/cpptrace.git
896-
git checkout v0.7.4
896+
git checkout v0.7.5
897897
mkdir cpptrace/build
898898
cd cpptrace/build
899899
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -976,7 +976,7 @@ make install
976976
cd ~/scratch/cpptrace-test
977977
git clone https://github.com/jeremy-rifkin/cpptrace.git
978978
cd cpptrace
979-
git checkout v0.7.4
979+
git checkout v0.7.5
980980
mkdir build
981981
cd build
982982
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
@@ -996,7 +996,7 @@ cpptrace and its dependencies.
996996
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
997997
```
998998
[requires]
999-
cpptrace/0.7.4
999+
cpptrace/0.7.5
10001000
[generators]
10011001
CMakeDeps
10021002
CMakeToolchain

0 commit comments

Comments
 (0)