Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dabeaz committed Apr 13, 2017
1 parent 43fe6fc commit b791b08
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 12 deletions.
8 changes: 4 additions & 4 deletions ANNOUNCE
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
January 31, 2017
April 13, 2017

Announcing : PLY-3.10 (Python Lex-Yacc)
Announcing : PLY-3.11 (Python Lex-Yacc)

http://www.dabeaz.com/ply

I'm pleased to announce PLY-3.10--a pure Python implementation of the
common parsing tools lex and yacc. PLY-3.10 is a minor bug fix
I'm pleased to announce PLY-3.11--a pure Python implementation of the
common parsing tools lex and yacc. PLY-3.11 is a minor bug fix
release. It supports both Python 2 and Python 3.

If you are new to PLY, here are a few highlights:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 3.11
---------------------
04/13/17 beazley
Mostly minor bug fixes and small code cleanups.

Version 3.10
---------------------
01/31/17: beazley
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PLY (Python Lex-Yacc) Version 3.10
PLY (Python Lex-Yacc) Version 3.11

Copyright (C) 2001-2017
David M. Beazley (Dabeaz LLC)
Expand Down
2 changes: 1 addition & 1 deletion doc/internal.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>PLY Internals</h1>
</b>

<p>
<b>PLY Version: 3.10</b>
<b>PLY Version: 3.11</b>
<p>

<!-- INDEX -->
Expand Down
7 changes: 5 additions & 2 deletions doc/ply.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>PLY (Python Lex-Yacc)</h1>
</b>

<p>
<b>PLY Version: 3.10</b>
<b>PLY Version: 3.11</b>
<p>

<!-- INDEX -->
Expand Down Expand Up @@ -1438,10 +1438,13 @@ <H3><a name="ply_nn21"></a>4.20 Miscellaneous Issues</H3>

<blockquote>
<pre>
lex.lex(reflags=re.UNICODE)
lex.lex(reflags=re.UNICODE | re.VERBOSE)
</pre>
</blockquote>

Note: by default, <tt>reflags</tt> is set to <tt>re.VERBOSE</tt>. If you provide
your own flags, you may need to include this for PLY to preserve its normal behavior.

<p>
<li>Since the lexer is written entirely in Python, its performance is
largely determined by that of the Python <tt>re</tt> module. Although
Expand Down
2 changes: 1 addition & 1 deletion ply/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PLY package
# Author: David Beazley ([email protected])

__version__ = '3.10'
__version__ = '3.11'
__all__ = ['lex','yacc']
2 changes: 1 addition & 1 deletion ply/lex.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------

__version__ = '3.10'
__version__ = '3.11'
__tabversion__ = '3.10'

import re
Expand Down
2 changes: 1 addition & 1 deletion ply/yacc.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
import inspect
import warnings

__version__ = '3.10'
__version__ = '3.11'
__tabversion__ = '3.10'

#-----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
It is compatible with both Python 2 and Python 3.
""",
license="""BSD""",
version = "3.10",
version = "3.11",
author = "David Beazley",
author_email = "[email protected]",
maintainer = "David Beazley",
Expand Down

0 comments on commit b791b08

Please sign in to comment.