summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2016-10-18 08:14:27 -0700
committerEli Bendersky <eliben@google.com>2016-10-18 08:14:27 -0700
commitf2275a68ed2204636b53685887c995d8d307b6c0 (patch)
tree687c5211ab4418f82e0ab104d85f3cdda5965e0d
parent9e9855b3254a8e234ac8f793154d600905b90a55 (diff)
downloadpycparser-release_v2.16.tar.gz
Prepare 2.16 for releaserelease_v2.16
-rw-r--r--CHANGES5
-rw-r--r--README.rst2
-rw-r--r--pycparser/__init__.py4
-rw-r--r--setup.py2
4 files changed, 9 insertions, 4 deletions
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 @@ setup(
C compilers or analysis tools.
""",
license='BSD',
- version='2.15',
+ version='2.16',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='eliben@gmail.com',