preparing release 2.07
diff --git a/CHANGES b/CHANGES
index bebbf0e..c534d26 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-+ Version 2.07 (??)
++ Version 2.07 (16.06.2012)
- Issue 54: added an optional parser argument to parse_file
- Issue 59: added some more fake headers for C99
diff --git a/MANIFEST.in b/MANIFEST.in
index 9425490..4dcf1a8 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -5,6 +5,7 @@
include utils/fake_libc_include/*.h
include README.*
include LICENSE
+include CHANGES
include setup.*
recursive-exclude tests yacctab.* lextab.*
diff --git a/README.html b/README.html
index c66d433..a97b262 100644
--- a/README.html
+++ b/README.html
@@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/" />
-<title>pycparser v2.06</title>
+<title>pycparser v2.07</title>
<meta name="author" content="Eli Bendersky" />
<style type="text/css">
@@ -305,8 +305,8 @@
</style>
</head>
<body>
-<div class="document" id="pycparser-v2-06">
-<h1 class="title">pycparser v2.06</h1>
+<div class="document" id="pycparser-v2-07">
+<h1 class="title">pycparser v2.07</h1>
<table class="docinfo" frame="void" rules="none">
<col class="docinfo-name" />
<col class="docinfo-content" />
@@ -386,7 +386,7 @@
<div class="section" id="prerequisites">
<h2>2.1 Prerequisites</h2>
<ul class="simple">
-<li><tt class="docutils literal">pycparser</tt> was tested on Python 2.6 and 3.2, on both Linux and Windows. It should work on any later version (in both the 2.x and 3.x lines) as well.</li>
+<li><tt class="docutils literal">pycparser</tt> was tested on Python 2.6, 2.7 and 3.2, on both Linux and Windows. It should work on any later version (in both the 2.x and 3.x lines) as well.</li>
<li><tt class="docutils literal">pycparser</tt> uses the PLY module for the actual lexer and parser construction. Install PLY from <a class="reference external" href="http://www.dabeaz.com/ply/">its website</a>.</li>
</ul>
</div>
diff --git a/README.txt b/README.txt
index 5e868d4..f383675 100644
--- a/README.txt
+++ b/README.txt
@@ -1,5 +1,5 @@
===============
-pycparser v2.06
+pycparser v2.07
===============
:Author: `Eli Bendersky <http://eli.thegreenplace.net>`_
diff --git a/TODO.txt b/TODO.txt
index 249798a..147658e 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -11,7 +11,7 @@
Version Update
--------------
-setup.py, __init__.py, README.txt
+setup.py, __init__.py, README.txt, CHANGES
- Tag in hg
diff --git a/pycparser/__init__.py b/pycparser/__init__.py
index ca02e52..9e29099 100644
--- a/pycparser/__init__.py
+++ b/pycparser/__init__.py
@@ -9,7 +9,7 @@
#-----------------------------------------------------------------
__all__ = ['c_lexer', 'c_parser', 'c_ast']
-__version__ = '2.06'
+__version__ = '2.07'
from subprocess import Popen, PIPE
diff --git a/setup.py b/setup.py
index d5d3862..e3232f0 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@
""",
install_requires=['ply'],
license='BSD',
- version='2.06',
+ version='2.07',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='eliben@gmail.com',