summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2019-05-24 20:59:05 +0200
committerMatth?us G. Chajdas <dev@anteru.net>2019-05-24 20:59:05 +0200
commit86f61b9de7752a919f58519075d4a9fbc3381245 (patch)
tree80730027b974d4270867bac2ea0be61368e1cf8d
parentf65febe411aea68f11a82703612fc3974fec0926 (diff)
downloadpygments-86f61b9de7752a919f58519075d4a9fbc3381245.tar.gz
Update CHANGES and prepare for 2.4.1 release.
-rw-r--r--CHANGES2
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 19f07813..2ecbb94b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,11 +8,13 @@ pull request numbers to the requests at
Version 2.4.1
-------------
+(released May 24, 2019)
- Updated lexers:
* Coq (#1430)
* MSDOS Session (PR#734)
+ * NASM (#1517)
* Objective-C (PR#813, #1508)
* Prolog (#1511)
* TypeScript (#1515)
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 0da0649d..f0043e54 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -29,7 +29,7 @@ import sys
from pygments.util import StringIO, BytesIO
-__version__ = '2.4.0'
+__version__ = '2.4.1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index bd54b0f3..1361e20d 100755
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ else:
setup(
name = 'Pygments',
- version = '2.4.0',
+ version = '2.4.1',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',