Prepare for release 0.26
authorEli Bendersky <eliben@gmail.com>
Thu, 5 Dec 2019 13:34:21 +0000 (05:34 -0800)
committerEli Bendersky <eliben@gmail.com>
Thu, 5 Dec 2019 13:34:21 +0000 (05:34 -0800)
CHANGES
TODO
elftools/__init__.py
setup.py

diff --git a/CHANGES b/CHANGES
index fd48c06baf2ddc18631ba6fd68d4b7198de12da0..7abbeb5b6e4cb1cf0594c55e8242d689ef09b6e2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,20 @@
 Changelog
 =========
 
++ Version 0.26 (2019.12.05)
+
+  - Call relocation for ARM v3 (#194)
+  - More complete architecture coverage for ENUM_E_MACHINE (#206)
+  - Support for .debug_pubtypes and .debug_pubnames sections (#208)
+  - Support for DWARF v4 location lists (#214)
+  - Decode strings in dynamic string tables (#217)
+  - Improve symbol table handling in dynamic segments (#219)
+  - Improved handling of location information (#225)
+  - Avoid deprecation warnings in Python 3.7+
+  - Add DWARF v5 OPs (#240)
+  - Handle many new translation forms and constants
+  - Lazy DIE parsing to speed up partial parsing of DWARF info (#249)
+
 + Version 0.25 (2018.09.01)
 
   - Make parsing of SH_TYPE and PT_TYPE fields dependent on the machine
diff --git a/TODO b/TODO
index 11b0adab473595130d3a4616086fb2786f311e8e..eab8592559e616373acc1f6ba254f03cb24662ba 100755 (executable)
--- a/TODO
+++ b/TODO
@@ -9,10 +9,10 @@ New version
 construct
 ---------
 
-The construct seems to be maintained again - they also backported my Python 3
-fixes. Theoretically, I can remove construct from pyelftools and use it as a
-dependency instead. I don't really have time to play with this now, but may
-do so in the future.
+construct seems to be maintained again - they also backported my Python 3 fixes.
+Theoretically, I can remove construct from pyelftools and use it as a dependency
+instead. I don't really have time to play with this now, but may do so in the
+future.
 
 Distribution
 ------------
index 9344a0f8ea549a2f6e5dca9421f906f561b4b670..ec1206c9b480540a2ca7ed77798ba7e2b7df3597 100644 (file)
@@ -4,4 +4,4 @@
 # Eli Bendersky (eliben@gmail.com)
 # This code is in the public domain
 #-------------------------------------------------------------------------------
-__version__ = '0.25'
+__version__ = '0.26'
index e238c26e2eb9c376fd287a0609c08933db1ee070..33ebf805aeffe8392301ce339c4ded6a9f4b8b59 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.25',
+    version='0.26',
     author='Eli Bendersky',
     maintainer='Eli Bendersky',
     author_email='eliben@gmail.com',