Skip to content

Commit

Permalink
Update version 2.19 --> 2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Mar 4, 2020
1 parent 49282e9 commit dd0cf11
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
+ Version 2.20 (2020.03.04)

- #61: Fix slow backtracking when parsing strings.
- #99: Parser for FuncDecl incorrectly sets declname attribute on return type.
- #310: Fix crash when file starts with a semicolon.
- #313: Fix array type generation.
- #314: Fix failed parsing of unnamed function parameters with array dim
qualifiers.
- #315: Fix pointer type generation.
- #324: Fixes for u/l constant integer suffix.
- #346: Fix error transforming an empty switch.
- #350: Recognize integer multicharacter constants like 'ABCD'.
- #363: Fix incorrect AST when parsing offsetof.

+ Version 2.19 (2018.09.19)

- PR #277: Fix parsing of floating point literals
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.19
pycparser v2.20
===============

:Author: `Eli Bendersky <https://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.19'
__version__ = '2.20'

import io
from subprocess import check_output
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def make_release_tree(self, basedir, files):
C compilers or analysis tools.
""",
license='BSD',
version='2.19',
version='2.20',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='[email protected]',
Expand Down

0 comments on commit dd0cf11

Please sign in to comment.