preparing for 2.08 release
diff --git a/CHANGES b/CHANGES
index 69a1d73..7887451 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-+ Version 2.08 (??)
++ Version 2.08 (10.08.2012)
 
   - Issue 73: initial support for #pragma directives. Consume them without
     errors and ignore (no tokens are returned). Line numbers are preserved.
diff --git a/README.txt b/README.txt
index f383675..371611d 100644
--- a/README.txt
+++ b/README.txt
@@ -1,5 +1,5 @@
 ===============

-pycparser v2.07

+pycparser v2.08

 ===============

 

 :Author: `Eli Bendersky <http://eli.thegreenplace.net>`_

@@ -96,7 +96,7 @@
 What about the standard C library headers?

 ------------------------------------------

 

-C code almost always includes various header files from the standard C library, like ``stdio.h``. While, with some effort, ``pycparser`` can be made to parse the standard headers from any C compiler, it's much simpler to use the provided "fake" standard  includes in ``utils/fake_libc_include``. These are standard C header files that contain only the bare necessities to allow valid parsing of the files that use them. As a bonus, since they're minimal, it can significantly improve the performance of parsing C files.

+C code almost always includes various header files from the standard C library, like ``stdio.h``. While, with some effort, ``pycparser`` can be made to parse the standard headers from any C compiler, it's much simpler to use the provided "fake" standard  includes in ``utils/fake_libc_include``. These are standard C header files that contain only the bare necessities to allow valid parsing of the files that use them. As a bonus, since they're minimal, it can significantly improve the performance of parsing large C files.

 

 See the ``using_cpp_libc.py`` example for more details.

 

diff --git a/setup.py b/setup.py
index e3232f0..d9e9dbc 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@
     """,

     install_requires=['ply'],

     license='BSD',

-    version='2.07',

+    version='2.08',

     author='Eli Bendersky',

     maintainer='Eli Bendersky',

     author_email='eliben@gmail.com',