Skip to content

Commit

Permalink
0.10.0 Release (#214)
Browse files Browse the repository at this point in the history
* 0.10.0 release.

* Readme updates

* Fix twine warnings:

1. Syntax error in RST.
2. Add a content type for long_description.
  • Loading branch information
lucaswiman authored Sep 3, 2022
1 parent 4a4b7d4 commit a332068
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
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

0 comments on commit a332068

Please sign in to comment.