Skip to content

Commit

Permalink
Bump versions to 2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Sep 19, 2018
1 parent bcb5f9f commit caa4c11
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
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.18
pycparser v2.19
===============

: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.18'
__version__ = '2.19'

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.18',
version='2.19',
author='Eli Bendersky',
maintainer='Eli Bendersky',
author_email='eliben@gmail.com',
Expand Down

0 comments on commit caa4c11

Please sign in to comment.