From 4550f0c5d4069eb9d8028ccc6554c7e98490ba2d Mon Sep 17 00:00:00 2001 From: David Beazley Date: Sat, 25 Feb 2017 15:21:41 -0600 Subject: [PATCH] Bumped version number --- README.md | 2 +- docs/index.rst | 2 +- docs/sly.rst | 2 +- setup.py | 2 +- sly/lex.py | 2 +- sly/yacc.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 562bdd7..b3b5f3f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -SLY (Sly Lex-Yacc) Version 0.0 +SLY (Sly Lex-Yacc) Version 0.1 Copyright (C) 2016-2017 David M. Beazley (Dabeaz LLC) diff --git a/docs/index.rst b/docs/index.rst index 63c8405..b52b9f3 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,7 +12,7 @@ USE AT YOUR OWN RISK. Requirements ============ -SLY requires the use of Python 3.5 or greater. Older versions +SLY requires the use of Python 3.6 or greater. Older versions of Python are not supported. Overview diff --git a/docs/sly.rst b/docs/sly.rst index a1bf5d5..ca22d1c 100644 --- a/docs/sly.rst +++ b/docs/sly.rst @@ -6,7 +6,7 @@ Given the intrinsic complexity of parsing, I would strongly advise that you read (or at least skim) this entire document before jumping into a big development project with SLY. -SLY requires Python 3.5 or newer. If you're using an older version, +SLY requires Python 3.6 or newer. If you're using an older version, you're out of luck. Sorry. Introduction diff --git a/setup.py b/setup.py index 630324b..b510f5d 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup(name = "sly", SLY is an implementation of lex and yacc for Python 3. """, license="""BSD""", - version = "0.0", + version = "0.1", author = "David Beazley", author_email = "dave@dabeaz.com", maintainer = "David Beazley", diff --git a/sly/lex.py b/sly/lex.py index 4556516..221ea73 100644 --- a/sly/lex.py +++ b/sly/lex.py @@ -31,7 +31,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ----------------------------------------------------------------------------- -__version__ = '0.0' +__version__ = '0.1' __all__ = ['Lexer'] import re diff --git a/sly/yacc.py b/sly/yacc.py index a959d45..dfe8911 100644 --- a/sly/yacc.py +++ b/sly/yacc.py @@ -35,7 +35,7 @@ import sys import inspect from collections import OrderedDict, defaultdict -__version__ = '0.0' +__version__ = '0.1' __all__ = [ 'Parser' ] class YaccError(Exception):