Skip to content

Commit

Permalink
Preparation for releasing 2.21
Browse files Browse the repository at this point in the history
updates #438
  • Loading branch information
eliben committed Nov 6, 2021
1 parent f19cd14 commit b400c00
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
+ Version 2.21 (2021.11.06)

- Much improved support for C11 (multiple PRs)
- Support for parehthesized compount statements (#423)
- Support for modern Python versions (3.9 and 3.10)
- Fix support for structs with nested enums (#387)
- Multiple small bug fixes

+ Version 2.20 (2020.03.04)

- #61: Fix slow backtracking when parsing strings.
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.20
pycparser v2.21
===============


Expand Down
1 change: 0 additions & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Version Update
setup.py, __init__.py, README, CHANGES
- Make sure _build_tables was run in pycparser/
- If PLY version changes, note it in README and ply/LICENSE
- Run tox tests

python setup.py sdist

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.20'
__version__ = '2.21'

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

0 comments on commit b400c00

Please sign in to comment.