diff --git a/NEWS b/NEWS index fa0bb19..e128698 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,10 @@ unreleased ========== +0.41 +========== +Normalize both gdb stacktrace and the crash frame (rhbz#2168223) + 0.40 ========== Add support for fine-grained error location lines in Python tracebacks diff --git a/gen-version b/gen-version index 26fb946..b1bdf29 100755 --- a/gen-version +++ b/gen-version @@ -1,6 +1,6 @@ #!/bin/bash -DEF_VER=0.40 +DEF_VER=0.41 LF=' ' diff --git a/lib/Makefile.am b/lib/Makefile.am index a52e5a1..8d748b8 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -90,7 +90,7 @@ libsatyr_conv_la_LIBADD = \ lib_LTLIBRARIES = libsatyr.la libsatyr_la_SOURCES = libsatyr_la_LIBADD = libsatyr_conv.la -libsatyr_la_LDFLAGS = -version-info 4:3:0 -export-symbols-regex '^sr_' +libsatyr_la_LDFLAGS = -version-info 4:4:0 -export-symbols-regex '^sr_' # NOTE: when updating CURRENT, update it in ruby/lib/satyr.rb as well! diff --git a/satyr.spec.in b/satyr.spec.in index 665c0b9..3c587d5 100644 --- a/satyr.spec.in +++ b/satyr.spec.in @@ -129,6 +129,10 @@ make check|| { %endif %changelog +* Sun Feb 19 2023 Michal Srb 0.41-1 +- Normalize both gdb stacktrace and the crash frame +- Use SPDX format for license field + * Mon Oct 31 2022 Michal Srb 0.40-1 - Add support for fine-grained error location lines in Python tracebacks - py_base_stacktrace.c: Avoid duplicate include of py_base_thread.h