Skip to content

Commit

Permalink
Bump version and make changelog notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Oct 6, 2023
1 parent 2b1a2c7 commit 3143181
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@
- [v0.1.1](#v011)
- [v0.1](#v01)

# v0.2.1

Patches:
- Fixed uintptr_t implicit conversion issue for msvc
- Better handling for PIC and static linkage in CMake
- Added gcc 5 support
- Various warning fixes
- Added stackwalk64 support for 32-bit x86 mingw/clang and architecture detection
- Added check for stackwalk64 support and CaptureStackBacktrace as a fallback
- Various cmake cleanup and changes to use cpptrace through package managers
- Added sonarlint and implemented some sonarlint fixes

# v0.2.0

Key changes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()

project(
cpptrace
VERSION 0.1.0
VERSION 0.2.1
LANGUAGES C CXX
)

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ include(FetchContent)
FetchContent_Declare(
cpptrace
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
GIT_TAG v0.2.0 # <HASH or TAG>
GIT_TAG v0.2.1 # <HASH or TAG>
)
FetchContent_MakeAvailable(cpptrace)
target_link_libraries(your_target cpptrace)
Expand Down Expand Up @@ -353,7 +353,7 @@ include(FetchContent)
FetchContent_Declare(
cpptrace
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
GIT_TAG v0.2.0 # <HASH or TAG>
GIT_TAG v0.2.1 # <HASH or TAG>
)
FetchContent_MakeAvailable(cpptrace)
target_link_libraries(your_target cpptrace)
Expand All @@ -369,7 +369,7 @@ information.

```sh
git clone https://github.com/jeremy-rifkin/cpptrace.git
git checkout v0.2.0
git checkout v0.2.1
mkdir cpptrace/build
cd cpptrace/build
cmake .. -DCMAKE_BUILD_TYPE=Release
Expand Down Expand Up @@ -405,7 +405,7 @@ you when installing new libraries.

```ps1
git clone https://github.com/jeremy-rifkin/cpptrace.git
git checkout v0.2.0
git checkout v0.2.1
mkdir cpptrace/build
cd cpptrace/build
cmake .. -DCMAKE_BUILD_TYPE=Release
Expand All @@ -423,7 +423,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.2.0
git checkout v0.2.1
mkdir cpptrace/build
cd cpptrace/build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
Expand Down

0 comments on commit 3143181

Please sign in to comment.