diff options
author | Georg Brandl <georg@python.org> | 2016-03-02 08:12:33 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-03-02 08:12:33 +0100 |
commit | f1ccccae15579d7886fdcdf6f1ff251ca574d829 (patch) | |
tree | 2951757ee0cf53692d9c096041f063c58f1ad2ef | |
parent | e01c1606567c139e72ed98ab9bf39e1c9f6f857f (diff) | |
download | pygments-f1ccccae15579d7886fdcdf6f1ff251ca574d829.tar.gz |
Bump, 2.1.32.1.3
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | pygments/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -6,6 +6,13 @@ Issue numbers refer to the tracker at pull request numbers to the requests at <https://bitbucket.org/birkenfeld/pygments-main/pull-requests/merged>. +Version 2.1.3 +------------- +(released Mar 2, 2016) + +- Fixed regression in Bash lexer (PR#563) + + Version 2.1.2 ------------- (released Feb 29, 2016) diff --git a/pygments/__init__.py b/pygments/__init__.py index 45c53b87..c6234404 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -26,7 +26,7 @@ :license: BSD, see LICENSE for details. """ -__version__ = '2.1.2' +__version__ = '2.1.3' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] @@ -54,7 +54,7 @@ else: setup( name = 'Pygments', - version = '2.1.2', + version = '2.1.3', url = 'http://pygments.org/', license = 'BSD License', author = 'Georg Brandl', |