Bumped version number

This commit is contained in:
David Beazley 2017-02-25 15:21:41 -06:00
parent c0694aa922
commit 4550f0c5d4
6 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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",

View File

@ -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

View File

@ -35,7 +35,7 @@ import sys
import inspect
from collections import OrderedDict, defaultdict
__version__ = '0.0'
__version__ = '0.1'
__all__ = [ 'Parser' ]
class YaccError(Exception):