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 | 4d8dbbb7861f6f8a78a952d5bcc3e7a9f5940675 (patch) | |
| tree | 6a992acb4b6bda139643afc337900ab0ab2d1e72 | |
| parent | e237b91be5aa825b210a436e13caefa43b2eeb26 (diff) | |
| download | pygments-git-2.1.3.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', |
