Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.10.0 Release #214

Merged
merged 3 commits into from
Sep 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ Syntax Reference

``b"some literal"`` A bytes literal. Using bytes literals and regular
expressions allows your grammar to parse binary files.
Note that all literals and regular expressions must be
of the same type within a grammar. In grammars that
process bytestrings, you should make the grammar string
an ``r"""string"""`` so that byte literals like ``\xff``
work correctly.
Note that all literals and regular expressions must be
of the same type within a grammar. In grammars that
process bytestrings, you should make the grammar string
an ``r"""string"""`` so that byte literals like ``\xff``
work correctly.

[space] Sequences are made out of space- or tab-delimited
things. ``a b c`` matches spots where those 3
Expand Down Expand Up @@ -441,8 +441,11 @@ Niceties

Version History
===============

(Next release)
* ...

0.10.0
* Fix infinite recursion in __eq__ in some cases. (FelisNivalis)
* Improve error message in left-recursive rules. (lucaswiman)
* Add support for range ``{min,max}`` repetition expressions (righthandabacus)
* Fix bug in ``*`` and ``+`` for token grammars (lucaswiman)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

setup(
name='parsimonious',
version='0.9.0',
version='0.10.0',
description='(Soon to be) the fastest pure-Python PEG parser I could muster',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Erik Rose',
author_email='[email protected]',
license='MIT',
Expand Down