diff --git a/CMakeLists.txt b/CMakeLists.txt index 88a364f..5be8ec6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ if (NOT CMAKE_BUILD_TYPE) FORCE) endif (NOT CMAKE_BUILD_TYPE) -add_definitions(-D_GNU_SOURCE -DDWARVES_VERSION="v1.13") +add_definitions(-D_GNU_SOURCE -DDWARVES_VERSION="v1.15") find_package(DWARF REQUIRED) find_package(ZLIB REQUIRED) diff --git a/NEWS b/NEWS index f78e8d9..c7737b0 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +v1.15 + +Thu Jun 27 2019 + +3ed9a67967cf fprintf: Avoid null dereference with NULL configs +568dae4bd498 printf: Fixup printing "const" early with "const void" +68f261d8dfff fprintf: Fix recursively printing named structs in --expand_types +139a3b337381 ostra: Initial python3 conversion +01276a7e8966 spec: Sync spec with fedora's +9f1f0628b9ad rpm: Add missing devel headers +989dc3f1ba0d cmake: Install missing devel headers + v1.13 Tue Apr 16 2019 diff --git a/rpm/SPECS/dwarves.spec b/rpm/SPECS/dwarves.spec index be2c29f..0eaf5e0 100644 --- a/rpm/SPECS/dwarves.spec +++ b/rpm/SPECS/dwarves.spec @@ -2,7 +2,7 @@ %define libver 1 Name: dwarves -Version: 1.13 +Version: 1.15 Release: 1%{?dist} License: GPLv2 Summary: Debugging Information Manipulation Tools (pahole & friends) @@ -117,6 +117,12 @@ make install DESTDIR=%{buildroot} %{_libdir}/%{libname}_reorganize.so %changelog +* Fri May 27 2019 Arnaldo Carvalho de Melo - 1.15-1 +- New release: 1.15 +- Fix --expand_types/-E segfault +- Fixup endless printing named structs inside structs in --expand_types +- Avoid NULL deref with num config in __class__fprintf() + * Tue Apr 23 2019 Arnaldo Carvalho de Melo - 1.13-1 - New release: 1.13 - Infer __packed__ attributes, i.e. __attribute__((__packed__))