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

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