summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-10-02 13:06:26 -0500
committerDavid Beazley <dave@dabeaz.com>2015-10-02 13:06:26 -0500
commitb1228ee07d064787acbdca61238b17710c13fbd8 (patch)
tree6a5702fd9f4aa833d3318a534f43f6e99bbd7a7f
parentfa540e739971680a29177c986bb8a481ad2054f7 (diff)
downloadply-b1228ee07d064787acbdca61238b17710c13fbd8.tar.gz
Bumped version numbers
-rw-r--r--CHANGES5
-rw-r--r--ply/lex.py4
-rw-r--r--ply/yacc.py4
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 6a50772..e9c8348 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+Version 3.8
+---------------------
+10/02/15: beazley
+ Fixed issues related to Python 3.5. Patch contributed by Barry Warsaw.
+
Version 3.7
---------------------
08/25/15: beazley
diff --git a/ply/lex.py b/ply/lex.py
index 70edf13..3a40f62 100644
--- a/ply/lex.py
+++ b/ply/lex.py
@@ -31,8 +31,8 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
-__version__ = '3.7'
-__tabversion__ = '3.5'
+__version__ = '3.8'
+__tabversion__ = '3.8'
import re
import sys
diff --git a/ply/yacc.py b/ply/yacc.py
index dcb9679..e7f36aa 100644
--- a/ply/yacc.py
+++ b/ply/yacc.py
@@ -67,8 +67,8 @@ import inspect
import base64
import warnings
-__version__ = '3.7'
-__tabversion__ = '3.5'
+__version__ = '3.8'
+__tabversion__ = '3.8'
#-----------------------------------------------------------------------------
# === User configurable parameters ===