Skip to content

Commit 3143181

Browse files
committed
Bump version and make changelog notes
1 parent 2b1a2c7 commit 3143181

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55
- [v0.1.1](#v011)
66
- [v0.1](#v01)
77

8+
# v0.2.1
9+
10+
Patches:
11+
- Fixed uintptr_t implicit conversion issue for msvc
12+
- Better handling for PIC and static linkage in CMake
13+
- Added gcc 5 support
14+
- Various warning fixes
15+
- Added stackwalk64 support for 32-bit x86 mingw/clang and architecture detection
16+
- Added check for stackwalk64 support and CaptureStackBacktrace as a fallback
17+
- Various cmake cleanup and changes to use cpptrace through package managers
18+
- Added sonarlint and implemented some sonarlint fixes
19+
820
# v0.2.0
921

1022
Key changes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ endif()
66

77
project(
88
cpptrace
9-
VERSION 0.1.0
9+
VERSION 0.2.1
1010
LANGUAGES C CXX
1111
)
1212

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ include(FetchContent)
8585
FetchContent_Declare(
8686
cpptrace
8787
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
88-
GIT_TAG v0.2.0 # <HASH or TAG>
88+
GIT_TAG v0.2.1 # <HASH or TAG>
8989
)
9090
FetchContent_MakeAvailable(cpptrace)
9191
target_link_libraries(your_target cpptrace)
@@ -353,7 +353,7 @@ include(FetchContent)
353353
FetchContent_Declare(
354354
cpptrace
355355
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
356-
GIT_TAG v0.2.0 # <HASH or TAG>
356+
GIT_TAG v0.2.1 # <HASH or TAG>
357357
)
358358
FetchContent_MakeAvailable(cpptrace)
359359
target_link_libraries(your_target cpptrace)
@@ -369,7 +369,7 @@ information.
369369

370370
```sh
371371
git clone https://github.com/jeremy-rifkin/cpptrace.git
372-
git checkout v0.2.0
372+
git checkout v0.2.1
373373
mkdir cpptrace/build
374374
cd cpptrace/build
375375
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -405,7 +405,7 @@ you when installing new libraries.
405405

406406
```ps1
407407
git clone https://github.com/jeremy-rifkin/cpptrace.git
408-
git checkout v0.2.0
408+
git checkout v0.2.1
409409
mkdir cpptrace/build
410410
cd cpptrace/build
411411
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -423,7 +423,7 @@ To install just for the local user (or any custom prefix):
423423

424424
```sh
425425
git clone https://github.com/jeremy-rifkin/cpptrace.git
426-
git checkout v0.2.0
426+
git checkout v0.2.1
427427
mkdir cpptrace/build
428428
cd cpptrace/build
429429
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever

0 commit comments

Comments
 (0)