From: Eli Bendersky Date: Sat, 8 Nov 2014 13:41:54 +0000 (-0800) Subject: Changes for release 0.23 X-Git-Tag: v0.23 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=32e420e9440ed533a3ffff1cb6e87ae7baf716bc;p=pyelftools.git Changes for release 0.23 --- diff --git a/CHANGES b/CHANGES index 72e030b..e7d02ad 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,7 @@ Changelog ========= -+ Version 0.23 (??) ++ Version 0.23 (08.11.2014) - Minimal Python 2.x version raised to 2.7 - Basic support for MIPS (contributed by Karl Vogel). diff --git a/MANIFEST.in b/MANIFEST.in index 872e667..4a86138 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ recursive-include elftools *.py recursive-include scripts *.py recursive-include examples *.py *.elf *.out -recursive-include test *.py *.elf *.arm +recursive-include test *.py *.elf *.arm *.mips include README include LICENSE include CHANGES diff --git a/elftools/__init__.py b/elftools/__init__.py index 8a3e56c..4e2393f 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.22' +__version__ = '0.23' diff --git a/setup.py b/setup.py index 3fed12d..87ba808 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.22', + version='0.23', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com',