summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthäus G. Chajdas <dev@anteru.net>2019-11-26 19:14:42 +0100
committerMatthäus G. Chajdas <dev@anteru.net>2019-11-26 19:14:42 +0100
commit399d1a5b6ac620f42c0d4f4910006dc33093edce (patch)
tree2b26c775cb950290aa304aabcc21048c3210cefc
parent9e1f1e139639793017e3315664cc95c9225ed646 (diff)
downloadpygments-git-399d1a5b6ac620f42c0d4f4910006dc33093edce.tar.gz
Bump version to 2.5.1.2.5.1
-rw-r--r--CHANGES3
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 737a934c..5b19155d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,9 @@ pull request numbers to the requests at
Version 2.5.1
-------------
+(released November 26, 2019)
+
+- This release fixes a packaging issue. No functional changes.
Version 2.5.0
-------------
diff --git a/pygments/__init__.py b/pygments/__init__.py
index d7513313..b28da13c 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -29,7 +29,7 @@ import sys
from pygments.util import StringIO, BytesIO
-__version__ = '2.5.0'
+__version__ = '2.5.1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index 4982023d..61f1c7f2 100755
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ from setuptools import setup, find_packages
setup(
name = 'Pygments',
- version = '2.5.0',
+ version = '2.5.1',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',