diff options
| author | Matthäus G. Chajdas <dev@anteru.net> | 2020-10-24 16:08:03 +0200 |
|---|---|---|
| committer | Matthäus G. Chajdas <dev@anteru.net> | 2020-10-24 16:08:03 +0200 |
| commit | 9c1a0786948e971c004c0f968b489d10f963e873 (patch) | |
| tree | 7548698795106b300039b6d642df301e8eb0a938 | |
| parent | 20fb8fd85f37d79b37ac79f14774b9cc4ae77731 (diff) | |
| download | pygments-git-2.7.2.tar.gz | |
Prepare 2.7.2 release.2.7.2
Update CHANGES, bump version.
| -rw-r--r-- | CHANGES | 14 | ||||
| -rw-r--r-- | pygments/__init__.py | 2 |
2 files changed, 14 insertions, 2 deletions
@@ -14,11 +14,23 @@ Version 2.8.0 Version 2.7.2 ------------- -(not released yet) +(released October 24, 2020) + +- Updated lexers: + + * Latex (PR#1517, #1516) + * LLVM (PR#1565) + * SPARQL (PR#1559) - Fixed Python console/traceback lexer problems with custom exceptions without messages (#1548) - Allow loading ttc fonts on Mac/image formatter (#1223) +- Improve ``analyze_text`` across a variety of lexers (PR#1549) +- Removed CSS rule which forced the vertical padding to 0 for line numbers (PR#1583, #1579) +- Fix ``TNTLexer`` crashing on unexpected EOL (#1568, PR#1570) +- ``regexlint`` can be now run locally as part of ``tox`` tests (PR#1557) +- Fix typos (PR#1550, #1562) +- Add Python 3.9 as a supported version (PR#1554) Version 2.7.1 diff --git a/pygments/__init__.py b/pygments/__init__.py index 9204a4cc..446171e6 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -28,7 +28,7 @@ import sys from io import StringIO, BytesIO -__version__ = '2.7.1' +__version__ = '2.7.2' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] |
