From b400c0041e1646ef51d0347622d340eba44f3af9 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Sat, 6 Nov 2021 05:41:32 -0700 Subject: Preparation for releasing 2.21 updates #438 --- CHANGES | 8 ++++++++ README.rst | 2 +- TODO.txt | 1 - pycparser/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index d94cf57..4291cf7 100644 --- a/CHANGES +++ b/CHANGES @@ -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. diff --git a/README.rst b/README.rst index 02a2d76..e8ae8c1 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pycparser v2.20 +pycparser v2.21 =============== diff --git a/TODO.txt b/TODO.txt index d946d30..f8e7968 100644 --- a/TODO.txt +++ b/TODO.txt @@ -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 diff --git a/pycparser/__init__.py b/pycparser/__init__.py index 6e86e9f..d82eb2d 100644 --- a/pycparser/__init__.py +++ b/pycparser/__init__.py @@ -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 diff --git a/setup.py b/setup.py index 4dbd77e..f729ac4 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup( C compilers or analysis tools. """, license='BSD', - version='2.20', + version='2.21', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com', -- cgit v1.2.1