v1.15: New release

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2019-06-27 07:20:37 -03:00
parent 3ed9a67967
commit 5299035710
3 changed files with 20 additions and 2 deletions

View File

@ -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)

12
NEWS
View File

@ -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

View File

@ -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 <acme@redhat.com> - 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 <acme@redhat.com> - 1.13-1
- New release: 1.13
- Infer __packed__ attributes, i.e. __attribute__((__packed__))