diff --git a/setup.cfg b/setup.cfg index 7b28f62..c0733c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True tag = True diff --git a/setup.py b/setup.py index 9ea9924..98234d0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='slr-parser', - version='0.6.1', + version='0.6.2', author='Vipul Gharde', authon_email='vipul.gharde@gmail.com', description='Implementation of Simple LR (SLR) Parser for educational purposes.', diff --git a/slr_parser/__init__.py b/slr_parser/__init__.py index 8411e55..aece342 100644 --- a/slr_parser/__init__.py +++ b/slr_parser/__init__.py @@ -1 +1 @@ -__version__ = '0.6.1' +__version__ = '0.6.2'