Skip to content

Commit ce639eb

Browse files
committed
Bump to v0.8.3
1 parent af8fe95 commit ce639eb

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

Diff for: CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
- [Changelog](#changelog)
4+
- [v0.8.3](#v083)
45
- [v0.8.2](#v082)
56
- [v0.8.1](#v081)
67
- [v0.8.0](#v080)
@@ -28,6 +29,25 @@
2829
- [v0.1.1](#v011)
2930
- [v0.1](#v01)
3031

32+
# v0.8.3
33+
34+
Added:
35+
- Added basic JIT support https://github.com/jeremy-rifkin/cpptrace/issues/226
36+
- Added `cpptrace::formatter::transform` https://github.com/jeremy-rifkin/cpptrace/issues/227
37+
- Added support for gcc 4.8.5 https://github.com/jeremy-rifkin/cpptrace/issues/220
38+
39+
Fixed:
40+
- Fixed bug related to calling `dwarf_dealloc` on strings from `dwarf_formstring` and `dwarf_diename` https://github.com/davea42/libdwarf-code/issues/279
41+
- Fixed incorrect cmake version variable https://github.com/jeremy-rifkin/cpptrace/issues/231
42+
- Fixed `address_mode::none` not working https://github.com/jeremy-rifkin/cpptrace/issues/221
43+
- Fixed use of `-Wall` for clang-cl
44+
45+
Other:
46+
- Added ARM CI
47+
- Miscellaneous work on supporting old compilers
48+
- Updated cpptrace cmake target configuration to not add public compile definitions
49+
- Internal refactoring, cleanup, and code improvements
50+
3151
# v0.8.2
3252

3353
Fixed:

Diff for: CMakeLists.txt

+1-1
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.2
12+
VERSION 0.8.3
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

Diff for: README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ include(FetchContent)
141141
FetchContent_Declare(
142142
cpptrace
143143
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
144-
GIT_TAG v0.8.2 # <HASH or TAG>
144+
GIT_TAG v0.8.3 # <HASH or TAG>
145145
)
146146
FetchContent_MakeAvailable(cpptrace)
147147
target_link_libraries(your_target cpptrace::cpptrace)
@@ -963,7 +963,7 @@ include(FetchContent)
963963
FetchContent_Declare(
964964
cpptrace
965965
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
966-
GIT_TAG v0.8.2 # <HASH or TAG>
966+
GIT_TAG v0.8.3 # <HASH or TAG>
967967
)
968968
FetchContent_MakeAvailable(cpptrace)
969969
target_link_libraries(your_target cpptrace::cpptrace)
@@ -979,7 +979,7 @@ information.
979979

980980
```sh
981981
git clone https://github.com/jeremy-rifkin/cpptrace.git
982-
git checkout v0.8.2
982+
git checkout v0.8.3
983983
mkdir cpptrace/build
984984
cd cpptrace/build
985985
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1022,7 +1022,7 @@ you when installing new libraries.
10221022
10231023
```ps1
10241024
git clone https://github.com/jeremy-rifkin/cpptrace.git
1025-
git checkout v0.8.2
1025+
git checkout v0.8.3
10261026
mkdir cpptrace/build
10271027
cd cpptrace/build
10281028
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1040,7 +1040,7 @@ To install just for the local user (or any custom prefix):
10401040

10411041
```sh
10421042
git clone https://github.com/jeremy-rifkin/cpptrace.git
1043-
git checkout v0.8.2
1043+
git checkout v0.8.3
10441044
mkdir cpptrace/build
10451045
cd cpptrace/build
10461046
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -1123,7 +1123,7 @@ make install
11231123
cd ~/scratch/cpptrace-test
11241124
git clone https://github.com/jeremy-rifkin/cpptrace.git
11251125
cd cpptrace
1126-
git checkout v0.8.2
1126+
git checkout v0.8.3
11271127
mkdir build
11281128
cd build
11291129
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
@@ -1143,7 +1143,7 @@ cpptrace and its dependencies.
11431143
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
11441144
```
11451145
[requires]
1146-
cpptrace/0.8.2
1146+
cpptrace/0.8.3
11471147
[generators]
11481148
CMakeDeps
11491149
CMakeToolchain

0 commit comments

Comments
 (0)