Bump to v0.7.1
This commit is contained in:
parent
4ed90c1585
commit
3890a70cb4
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,6 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
- [Changelog](#changelog)
|
||||
- [v0.7.1](#v071)
|
||||
- [v0.7.0](#v070)
|
||||
- [v0.6.3](#v063)
|
||||
- [v0.6.2](#v062)
|
||||
@ -20,6 +21,26 @@
|
||||
- [v0.1.1](#v011)
|
||||
- [v0.1](#v01)
|
||||
|
||||
# v0.7.1
|
||||
|
||||
Added
|
||||
- Better support for finding libunwind on macos https://github.com/jeremy-rifkin/cpptrace/pull/162
|
||||
- Support for libbacktrace under mingw https://github.com/jeremy-rifkin/cpptrace/pull/166
|
||||
|
||||
Fixed
|
||||
- Computation of object address for safe object frames https://github.com/jeremy-rifkin/cpptrace/issues/169
|
||||
- Nested microfmt in cpptrace's namespace due to an ODR problem with libassert
|
||||
https://github.com/jeremy-rifkin/libassert/issues/103
|
||||
- Compilation on iOS https://github.com/jeremy-rifkin/cpptrace/pull/167
|
||||
- Compilation on old MSVC https://github.com/jeremy-rifkin/cpptrace/pull/165
|
||||
- Dbghelp use on 32 bit https://github.com/jeremy-rifkin/cpptrace/issues/170
|
||||
- Warning in brand new cmake due to FetchContent_Populate being deprecated
|
||||
|
||||
Other changes
|
||||
- Bumped the buffer size for execinfo and CaptureStackBackTrace to 400 frames
|
||||
- Switched to execinfo.h for unwinding on clang/apple clang on macos due to `_Unwind` not working with `-fno-exceptions`
|
||||
https://github.com/jeremy-rifkin/cpptrace/issues/161
|
||||
|
||||
# v0.7.0
|
||||
|
||||
Added
|
||||
|
||||
@ -9,7 +9,7 @@ set(package_name "cpptrace")
|
||||
|
||||
project(
|
||||
cpptrace
|
||||
VERSION 0.7.0
|
||||
VERSION 0.7.1
|
||||
DESCRIPTION "Simple, portable, and self-contained stacktrace library for C++11 and newer "
|
||||
HOMEPAGE_URL "https://github.com/jeremy-rifkin/cpptrace"
|
||||
LANGUAGES C CXX
|
||||
|
||||
14
README.md
14
README.md
@ -134,7 +134,7 @@ include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
cpptrace
|
||||
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
|
||||
GIT_TAG v0.7.0 # <HASH or TAG>
|
||||
GIT_TAG v0.7.1 # <HASH or TAG>
|
||||
)
|
||||
FetchContent_MakeAvailable(cpptrace)
|
||||
target_link_libraries(your_target cpptrace::cpptrace)
|
||||
@ -793,7 +793,7 @@ include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
cpptrace
|
||||
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
|
||||
GIT_TAG v0.7.0 # <HASH or TAG>
|
||||
GIT_TAG v0.7.1 # <HASH or TAG>
|
||||
)
|
||||
FetchContent_MakeAvailable(cpptrace)
|
||||
target_link_libraries(your_target cpptrace::cpptrace)
|
||||
@ -809,7 +809,7 @@ information.
|
||||
|
||||
```sh
|
||||
git clone https://github.com/jeremy-rifkin/cpptrace.git
|
||||
git checkout v0.7.0
|
||||
git checkout v0.7.1
|
||||
mkdir cpptrace/build
|
||||
cd cpptrace/build
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||
@ -852,7 +852,7 @@ you when installing new libraries.
|
||||
|
||||
```ps1
|
||||
git clone https://github.com/jeremy-rifkin/cpptrace.git
|
||||
git checkout v0.7.0
|
||||
git checkout v0.7.1
|
||||
mkdir cpptrace/build
|
||||
cd cpptrace/build
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||
@ -870,7 +870,7 @@ To install just for the local user (or any custom prefix):
|
||||
|
||||
```sh
|
||||
git clone https://github.com/jeremy-rifkin/cpptrace.git
|
||||
git checkout v0.7.0
|
||||
git checkout v0.7.1
|
||||
mkdir cpptrace/build
|
||||
cd cpptrace/build
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
|
||||
@ -953,7 +953,7 @@ make install
|
||||
cd ~/scratch/cpptrace-test
|
||||
git clone https://github.com/jeremy-rifkin/cpptrace.git
|
||||
cd cpptrace
|
||||
git checkout v0.7.0
|
||||
git checkout v0.7.1
|
||||
mkdir build
|
||||
cd build
|
||||
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
|
||||
@ -973,7 +973,7 @@ cpptrace and its dependencies.
|
||||
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
|
||||
```
|
||||
[requires]
|
||||
cpptrace/0.7.0
|
||||
cpptrace/0.7.1
|
||||
[generators]
|
||||
CMakeDeps
|
||||
CMakeToolchain
|
||||
|
||||
Loading…
Reference in New Issue
Block a user