summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-02-29 16:03:53 +0100
committerGeorg Brandl <georg@python.org>2016-02-29 16:03:53 +0100
commit97a22b120e586123e8ca5d66bae5ed20ac89da9a (patch)
tree293de12a4db38507cc64e2a5eab96ba09947db97
parent1bc68f35167903c3e28647ce0850904502f87a44 (diff)
downloadpygments-git-97a22b120e586123e8ca5d66bae5ed20ac89da9a.tar.gz
Bump to 2.1.22.1.2
-rw-r--r--CHANGES3
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index ca921fc7..aacfef88 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,9 +8,10 @@ pull request numbers to the requests at
Version 2.1.2
-------------
-(in development)
+(released Feb 29, 2016)
- Fixed Python 3 regression in image formatter (#1215)
+- Fixed regression in Bash lexer (PR#562)
Version 2.1.1
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 0c17500e..45c53b87 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -26,7 +26,7 @@
:license: BSD, see LICENSE for details.
"""
-__version__ = '2.1.1'
+__version__ = '2.1.2'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index b15e0bc9..03dcffb8 100755
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,7 @@ else:
setup(
name = 'Pygments',
- version = '2.1.1',
+ version = '2.1.2',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',