Skip to content

Commit

Permalink
Bumped to 1.2.0 (#22)
Browse files Browse the repository at this point in the history
* Added recursive rule
* Dropped support for Python 3.6 due to its End-of-Life
* Added support for Python 3.11
  • Loading branch information
mristin authored May 23, 2023
1 parent 5602772 commit 0eac214
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.2.0
=====
* Added recursive rule
* Dropped support for Python 3.6 due to its End-of-Life
* Added support for Python 3.11

1.1.2
=====
* Added support for Python 3.9 and 3.10
Expand Down
2 changes: 1 addition & 1 deletion lexery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import List, Pattern, Optional

# Don't forget to update the version in setup.py and CHANGELOG.rst!
__version__ = '1.1.2'
__version__ = '1.2.0'
__author__ = 'Marko Ristin'
__license__ = 'MIT'
__status__ = 'Production'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='lexery',
version='1.1.2', # Don't forget to update the changelog and __init__.py!
version='1.2.0', # Don't forget to update the changelog and __init__.py!
description='A simple lexer based on regular expressions',
long_description=long_description,
url='https://github.com/Parquery/lexery',
Expand Down

0 comments on commit 0eac214

Please sign in to comment.