Update version to 0.25 to prepare for release
authorEli Bendersky <eliben@gmail.com>
Sat, 1 Sep 2018 13:07:39 +0000 (06:07 -0700)
committerEli Bendersky <eliben@gmail.com>
Sat, 1 Sep 2018 13:07:39 +0000 (06:07 -0700)
CHANGES
elftools/__init__.py
setup.py

diff --git a/CHANGES b/CHANGES
index 95af1a222dbe66f7dfdb1709d5cd6be08fa9e4a6..fd48c06baf2ddc18631ba6fd68d4b7198de12da0 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,7 @@
 Changelog
 =========
 
-+ Version 0.25 (??)
++ Version 0.25 (2018.09.01)
 
   - Make parsing of SH_TYPE and PT_TYPE fields dependent on the machine
     (e_machine header field), making it possible to support conflicting type
@@ -19,7 +19,7 @@ Changelog
     testing time 3-5x
   - Improvements in MIPS flags handling (#165)
 
-+ Version 0.24 (04.08.2016)
++ Version 0.24 (2016.08.04)
 
   - Retrieve symbols by name - get_symbol_by_name (#58).
   - Symbol/section names are strings internally now, not bytestrings (this may
@@ -35,7 +35,7 @@ Changelog
   - Support for zlib-compressed debug sections (#102)
   - Support for DWARF v4 line programs (#82)
 
-+ Version 0.23 (08.11.2014)
++ Version 0.23 (2014.11.08)
 
   - Minimal Python 2.x version raised to 2.7
   - Basic support for MIPS (contributed by Karl Vogel).
@@ -43,7 +43,7 @@ Changelog
   - Support for parsing symbol table in dynamic segment
     (contributed by Nam T. Nguyen).
 
-+ Version 0.22 (30.03.2014)
++ Version 0.22 (2014.03.30)
 
   - pyelftools repository moved to https://github.com/eliben/pyelftools
   - Support for version sections - contributed by Yann Rouillard.
@@ -56,7 +56,7 @@ Changelog
     file name / path (based on pull request #16 by Shaheed Haque).
   - Set up Travis CI integration.
 
-+ Version 0.21 (17.04.2013)
++ Version 0.21 (2013.04.17)
 
   - Added new example: dwarf_decode_address - decode function name and
     file & line information from an address.
@@ -69,11 +69,11 @@ Changelog
   - Output of scripts/readelf.py now matches that of binutils 2.23.52.
   - Added more machine EM_ values to ENUM_E_TYPE.
 
-+ Version 0.20 (27.01.2012)
++ Version 0.20 (2012.01.27)
 
   - Python 3 support
   - Fixed some problems with running tests
   - Issue #2: made all examples run (and test/run_examples_test.py pass)
     on Windows.
 
-+ Version 0.10 - Initial public release (06.01.2012)
++ Version 0.10 - Initial public release (2012.01.06)
index d30e19e54a76802e4df1b05e2778c55ea878aef2..9344a0f8ea549a2f6e5dca9421f906f561b4b670 100644 (file)
@@ -4,4 +4,4 @@
 # Eli Bendersky (eliben@gmail.com)
 # This code is in the public domain
 #-------------------------------------------------------------------------------
-__version__ = '0.24'
+__version__ = '0.25'
index 2b9c32ee27717fd80dc6a45bf7a3c2350647b215..e238c26e2eb9c376fd287a0609c08933db1ee070 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.24',
+    version='0.25',
     author='Eli Bendersky',
     maintainer='Eli Bendersky',
     author_email='eliben@gmail.com',