Skip to content

Commit

Permalink
Prepare 2.16 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Oct 18, 2016
1 parent 9e9855b commit f2275a6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===============
pycparser v2.15
pycparser v2.16
===============

:Author: `Eli Bendersky <http://eli.thegreenplace.net>`_
Expand Down
4 changes: 2 additions & 2 deletions pycparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def make_release_tree(self, basedir, files):
C compilers or analysis tools.
""",
license='BSD',
version='2.15',
version='2.16',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='eliben@gmail.com',
Expand Down

0 comments on commit f2275a6

Please sign in to comment.