From b5840ce74154391bf48eff4473128cc245a55505 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 6 Sep 2023 16:44:22 -0700 Subject: [PATCH] Release 0.30 --- CHANGES | 10 ++++++++++ TODO | 3 +-- elftools/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index d3553f5..11720bc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,16 @@ Changelog ========= ++ Version 0.30 (2023.09.06) + + - Optimization: cache instantiation of DWARF structs (#435) + - DWARFv5 CU headers (#442) + - Bug fix in attribute reporting for DWA_FORM_indirect (#475) + - Support for RISC-V attributes (#459) + - Readelf used for testing upgraded to 2.41 (#489) + - Support for MIPS64 object files (#495) + - LoongArch support (#470, #483) + + Version 0.29 (2022.08.09) - Lots of improvements to DWARFv5 support (#400, #411, #418, #419, #429 and diff --git a/TODO b/TODO index 3cc524c..a597a4e 100755 --- a/TODO +++ b/TODO @@ -17,9 +17,8 @@ future. Preparing a new release ----------------------- -* Run 'tox' tests (with '-r' to create new venvs) * Make sure new version was updated everywhere appropriate -* Run ``python setup.py build sdist bdist_wheel`` (no 'upload' yet) +* Run ``python3 setup.py build sdist bdist_wheel`` (no 'upload' yet) * Untar the created ``dist/pyelftools-x.y.tar.gz`` and make sure everything looks ok * Now build with upload to send it to PyPi diff --git a/elftools/__init__.py b/elftools/__init__.py index 22efc19..0d40def 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.29' +__version__ = '0.30' diff --git a/setup.py b/setup.py index 023cf05..ea75680 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.29', + version='0.30', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com', -- 2.30.2