Prepare for releasing version 0.28 v0.28
authorEli Bendersky <eliben@gmail.com>
Thu, 3 Feb 2022 14:45:41 +0000 (06:45 -0800)
committerEli Bendersky <eliben@gmail.com>
Thu, 3 Feb 2022 14:45:41 +0000 (06:45 -0800)
CHANGES
elftools/__init__.py
setup.py

diff --git a/CHANGES b/CHANGES
index 5319a3a22932bd3f438c3e45f5b139d7d335129e..42d429786eec37a4af7477e80693c74fc62f81e3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,21 @@
 Changelog
 =========
 
++ Version 0.28 (2022.02.03)
+
+  - Added a method for returning the index of a section by name (#331)
+  - Allow filtering by section types in iter_sections (#345)
+  - Support Android compressed rel/rela sections (#357)
+  - Initial support for PPC64LE (#360)
+  - Initial DWARF v5 support (#363 with several follow-ups)
+  - Fixed parsing for structures containing uids or gids in core
+    dumps (#354)
+  - Allow filtering by segment types in iter_segments (#375)
+  - Add support for .note.gnu.property (#386)
+  - Update readelf tests to work with more recent version of
+    readelf (#387)
+  - Add support for note GNU_PROPERTY_X86_FEATURE_1_AND (#388)
+
 + Version 0.27 (2020.10.27)
 
   - Print addend wfor RELA relocations without symbol (#292)
index 25e13737789fbb17550b2ac8e15f04823eeceaea..9eb4bfb14fe64f656f128562210a027dcf0dc249 100644 (file)
@@ -4,4 +4,4 @@
 # Eli Bendersky (eliben@gmail.com)
 # This code is in the public domain
 #-------------------------------------------------------------------------------
-__version__ = '0.27'
+__version__ = '0.28'
index a9ad99705f26a76eb98c5a0fc58e335178e1335c..1593362684982afad8fbd1e8d95a32560cf57588 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.27',
+    version='0.28',
     author='Eli Bendersky',
     maintainer='Eli Bendersky',
     author_email='eliben@gmail.com',