python 3 version and README update v0.20
authorEli Bendersky <eliben@gmail.com>
Mon, 30 Jan 2012 17:20:41 +0000 (19:20 +0200)
committerEli Bendersky <eliben@gmail.com>
Mon, 30 Jan 2012 17:20:41 +0000 (19:20 +0200)
CHANGES
LICENSE
README
elftools/__init__.py
setup.py

diff --git a/CHANGES b/CHANGES
index 29325f722eecbe884cbf94e9f1d16fb1ddf5ea47..0e52284b5c598741ee990a22caf5d0b6e9cdc23f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,8 +1,9 @@
 Changelog
 =========
 
-+ Version 0.11 (??)
++ Version 0.20 (27.01.2012)
 
+  - Python 3 support
   - Fixed some problems with running tests
   - Issue #2: made all examples run (and test/run_examples_test.py pass)
     on Windows.
diff --git a/LICENSE b/LICENSE
index 05769c7dd52673ab97537160d57273b02fd7054a..c779ed70f35050980612c93e6eba90850ea1fa3c 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,10 +1,8 @@
 pyelftools is in the public domain (see below if you need more details).
 
 pyelftools uses the construct library for structured parsing of a binary
-stream. construct is packaged in pyelftools/construct - it is version 2.00 of
-the library, slighly modified by me. This version was also released by the
-original author of construct into the public domain, and its distribution with
-pyelftools maintains this license.
+stream. construct is packaged in pyelftools/construct - see its LICENSE
+file for the license.
 
 -------------------------------------------------------------------------------
 
diff --git a/README b/README
index a66aa289a79eea442b910ef3312dc133ceed408c..836c1f289267ef88798ce5868ea01e961353f0a4 100644 (file)
--- a/README
+++ b/README
@@ -9,8 +9,8 @@ Pre-requisites
 --------------
 
 As a user of **pyelftools**, one only needs Python to run. It works with
-Python versions 2.6 and 2.7 (Python 3 support is planned). For hacking
-on **pyelftools** the requirements are a bit more strict, please see the 
+Python versions 2.6, 2.7 and 3.2. For hacking on **pyelftools** the
+requirements are a bit more strict, please see the
 `hacking guide <https://bitbucket.org/eliben/pyelftools/wiki/Hacking>`_.
 
 Installing
index 00ba7858f65ef7b0e56f27897b52da91dfe1f640..0f14043bf4b6161450261886524913836da624c0 100644 (file)
@@ -1,3 +1,3 @@
-__version__ = '0.10'
+__version__ = '0.20'
 
 
index bb2f3bb3bc9f74412d4e809b07b71383f830b354..50b5f95df452d0aa99618ee17937dcd41eaa8801 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -24,14 +24,16 @@ setup(
     description='Library for analyzing ELF files and DWARF debugging information',\r
     long_description=description,\r
     license='Public domain',\r
-    version='0.10',\r
+    version='0.20',\r
     author='Eli Bendersky',\r
     maintainer='Eli Bendersky',\r
     author_email='eliben@gmail.com',\r
     url='https://bitbucket.org/eliben/pyelftools',\r
     platforms='Cross Platform',\r
     classifiers = [\r
-        'Programming Language :: Python :: 2',],\r
+        'Programming Language :: Python :: 2',\r
+        'Programming Language :: Python :: 3',\r
+        ],\r
 \r
     # All packages and sub-packages must be listed here\r
     packages=[\r