Prepare 2.16 for release
diff --git a/CHANGES b/CHANGES
index 1e4eca4..9c5e6a3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
++ Version 2.16 (18.10.2016)
+
+  - Functionally identical to 2.15, but fixes a packaging problem that caused
+    failed installation (_build_tables wasn't rerun in the pycparser/ dir).
+
 + Version 2.15 (18.10.2016)
 
   - PR #121: Update bundled PLY version to 3.8
diff --git a/README.rst b/README.rst
index f45e5d5..7588cea 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
 ===============
-pycparser v2.15
+pycparser v2.16
 ===============
 
 :Author: `Eli Bendersky <http://eli.thegreenplace.net>`_
diff --git a/pycparser/__init__.py b/pycparser/__init__.py
index da3a295..74b2702 100644
--- a/pycparser/__init__.py
+++ b/pycparser/__init__.py
@@ -4,11 +4,11 @@
 # This package file exports some convenience functions for
 # interacting with pycparser
 #
-# Copyright (C) 2008-2015, Eli Bendersky
+# Copyright (C) 2008-2016, Eli Bendersky
 # License: BSD
 #-----------------------------------------------------------------
 __all__ = ['c_lexer', 'c_parser', 'c_ast']
-__version__ = '2.15'
+__version__ = '2.16'
 
 from subprocess import Popen, PIPE
 from .c_parser import CParser
diff --git a/setup.py b/setup.py
index 42e2f7c..da2cda1 100644
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@
         C compilers or analysis tools.
     """,
     license='BSD',
-    version='2.15',
+    version='2.16',
     author='Eli Bendersky',
     maintainer='Eli Bendersky',
     author_email='eliben@gmail.com',