Skip to content

Commit

Permalink
Release 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Apr 22, 2015
1 parent df48f15 commit f1b2db2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
+ Version 2.12 (21.04.2015)

- This is a fix release for 2.11; the memory optimization with __slots__ on
Coord and AST nodes didn't take weakrefs into account, which broke cffi and
its many dependents (iseue #76). Fixed by adding __weakref__ to __slots__.

+ Version 2.11 (21.04.2015)

- Add support for C99 6.5.3.7 p7 - qualifiers within array dimensions in
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.11
pycparser v2.12
===============

:Author: `Eli Bendersky <http://eli.thegreenplace.net>`_
Expand Down
2 changes: 1 addition & 1 deletion pycparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# License: BSD
#-----------------------------------------------------------------
__all__ = ['c_lexer', 'c_parser', 'c_ast']
__version__ = '2.11'
__version__ = '2.12'

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.11',
version='2.12',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='[email protected]',
Expand Down

0 comments on commit f1b2db2

Please sign in to comment.