Bump version to 0.22 and update TODO a bit
diff --git a/CHANGES b/CHANGES
index e45ebb0..926dbe0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,7 @@
 Changelog
 =========
 
-+ Version 0.22 (??)
++ Version 0.22 (30.03.2014)
 
   - pyelftools repository moved to https://github.com/eliben/pyelftools
   - Support for version sections - contributed by Yann Rouillard.
@@ -35,4 +35,3 @@
     on Windows.
 
 + Version 0.10 - Initial public release (06.01.2012)
-
diff --git a/TODO b/TODO
index 7ee53e3..d1a852b 100644
--- a/TODO
+++ b/TODO
@@ -4,7 +4,7 @@
 * Update elftools/__init__.py
 * Update setup.py
 * Update CHANGES
-* Tag in hg
+* Tag in git (v0.xx)
 
 construct
 ---------
@@ -22,10 +22,8 @@
 Preparing a new release
 -----------------------
 
-* Run readelf tests with up-to-date readelf (from the new binutils)
-* Run all tests with Python 2.7 before packaging, on Linux
+* Run tox
 * Make sure new version was updated everywhere appropriate
-* Packaging done on Linux
 * Run ``python setup.py build sdist`` (no 'upload' yet)
 * Untar the created ``dist/pyelftools-x.y.tar.gz`` and make sure
   everything looks ok
@@ -33,4 +31,3 @@
 * Now build with upload to send it to PyPi
 * Test with pip install from some new virtualenv
 * The older download can be kept alive for a couple of days
-
diff --git a/elftools/__init__.py b/elftools/__init__.py
index 90be2eb..8a3e56c 100644
--- a/elftools/__init__.py
+++ b/elftools/__init__.py
@@ -4,5 +4,4 @@
 # Eli Bendersky (eliben@gmail.com)
 # This code is in the public domain
 #-------------------------------------------------------------------------------
-__version__ = '0.21'
-
+__version__ = '0.22'
diff --git a/setup.py b/setup.py
index 7270411..3fed12d 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@
     description='Library for analyzing ELF files and DWARF debugging information',

     long_description=description,

     license='Public domain',

-    version='0.21',

+    version='0.22',

     author='Eli Bendersky',

     maintainer='Eli Bendersky',

     author_email='eliben@gmail.com',

diff --git a/tox.ini b/tox.ini
index 2adfc88..600ca1c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -10,4 +10,3 @@
 [testenv:py26]
 deps =
     unittest2
-