From caa4c11ebb99ed5cf854dc6342b5352d5ff52686 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 19 Sep 2018 05:21:20 -0700 Subject: [PATCH] Bump versions to 2.19 --- CHANGES | 7 +++++++ README.rst | 2 +- pycparser/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3c330873..711c2635 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ ++ Version 2.19 (2018.09.19) + + - PR #277: Fix parsing of floating point literals + - PR #254: Add support for parsing empty structs + - PR #240: Fix enum formatting in generated C code (also #216) + - PR #222: Add support for #pragma in struct declarations + + Version 2.18 (2017.07.04) - PR #161 & #184: Update bundled PLY version to 3.10 diff --git a/README.rst b/README.rst index 4af81604..df9025c5 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pycparser v2.18 +pycparser v2.19 =============== :Author: `Eli Bendersky `_ diff --git a/pycparser/__init__.py b/pycparser/__init__.py index e57d5d8b..b67389f4 100644 --- a/pycparser/__init__.py +++ b/pycparser/__init__.py @@ -8,7 +8,7 @@ # License: BSD #----------------------------------------------------------------- __all__ = ['c_lexer', 'c_parser', 'c_ast'] -__version__ = '2.18' +__version__ = '2.19' import io from subprocess import check_output diff --git a/setup.py b/setup.py index 0fcc191f..62eddc2a 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def make_release_tree(self, basedir, files): C compilers or analysis tools. """, license='BSD', - version='2.18', + version='2.19', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com',