Version 0.27 release
authorEli Bendersky <eliben@gmail.com>
Tue, 27 Oct 2020 13:42:12 +0000 (06:42 -0700)
committerEli Bendersky <eliben@gmail.com>
Tue, 27 Oct 2020 13:42:12 +0000 (06:42 -0700)
CHANGES
elftools/__init__.py
setup.py

diff --git a/CHANGES b/CHANGES
index 7abbeb5b6e4cb1cf0594c55e8242d689ef09b6e2..5319a3a22932bd3f438c3e45f5b139d7d335129e 100644 (file)
--- 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)
index ec1206c9b480540a2ca7ed77798ba7e2b7df3597..25e13737789fbb17550b2ac8e15f04823eeceaea 100644 (file)
@@ -4,4 +4,4 @@
 # Eli Bendersky (eliben@gmail.com)
 # This code is in the public domain
 #-------------------------------------------------------------------------------
-__version__ = '0.26'
+__version__ = '0.27'
index 0377a1e19c372ac9fbf3dae9abd41fa0b57d3614..a9ad99705f26a76eb98c5a0fc58e335178e1335c 100644 (file)
--- 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',