From ba73057e2503fe4b6f44eb0e9c1d5a747a235628 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Tue, 27 Oct 2020 06:42:12 -0700 Subject: [PATCH] Version 0.27 release --- CHANGES | 14 ++++++++++++++ elftools/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7abbeb5..5319a3a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,20 @@ Changelog ========= ++ Version 0.27 (2020.10.27) + + - Print addend wfor RELA relocations without symbol (#292) + - Implement symbol lookup for {GNU,}HashSection (#290) + - Major rewrite of expression parsing + - Cashed random access to CUs and DIEs (#264) + - GNU expressions (#303) + - Support parsing LSDA pointers from FDEs (#308) + - Add support for DWA_OP_GNU_push_tls_address in expressions (#315) + - Some initial support for AArch64 little-endian (#318) + - Support for ELF files with a large number of sections (#333) + - Some minimal support for DWARFv1 (#335) + - Many small bug fixes; see git log. + + Version 0.26 (2019.12.05) - Call relocation for ARM v3 (#194) diff --git a/elftools/__init__.py b/elftools/__init__.py index ec1206c..25e1373 100644 --- a/elftools/__init__.py +++ b/elftools/__init__.py @@ -4,4 +4,4 @@ # Eli Bendersky (eliben@gmail.com) # This code is in the public domain #------------------------------------------------------------------------------- -__version__ = '0.26' +__version__ = '0.27' diff --git a/setup.py b/setup.py index 0377a1e..a9ad997 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( description='Library for analyzing ELF files and DWARF debugging information', long_description=description, license='Public domain', - version='0.26', + version='0.27', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com', -- 2.30.2