diff options
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | CHANGES | 11 | ||||
-rw-r--r-- | pygments/lexers/agile.py | 2 | ||||
-rw-r--r-- | pygments/lexers/compiled.py | 6 |
4 files changed, 22 insertions, 0 deletions
@@ -41,9 +41,11 @@ Other contributors, listed alphabetically, are: * Laurent Gautier -- R/S lexer * Alex Gaynor -- PyPy log lexer * Alain Gilbert -- TypeScript lexer +* Alex Gilding -- BlitzBasic lexer * Bertrand Goetzmann -- Groovy lexer * Krzysiek Goj -- Scala lexer * Matt Good -- Genshi, Cheetah lexers +* Michał Górny -- vim modeline support * Patrick Gotthardt -- PHP namespaces support * Olivier Guibe -- Asymptote lexer * Jordi Gutiérrez Hermoso -- Octave lexer @@ -100,6 +102,7 @@ Other contributors, listed alphabetically, are: * Mike Nolta -- Julia lexer * Jonas Obrist -- BBCode lexer * David Oliva -- Rebol lexer +* Pat Pannuto -- nesC lexer * Jon Parise -- Protocol buffers lexer * Ronny Pfannschmidt -- BBCode lexer * Benjamin Peterson -- Test suite refactoring @@ -14,6 +14,9 @@ Version 1.7 * Clay (PR#184) * Perl 6 (PR#181) + * Swig (PR#168) + * nesC (PR#166) + * BlitzBasic (PR#197) - Pygments will now recognize "vim" modelines when guessing the lexer for a file based on content (PR#118). @@ -30,6 +33,14 @@ Version 1.7 - Objective C/C++ lexers: allow "@" prefixing any expression (#871). +- Ruby lexer: fix lexing of Name::Space tokens (#860). + +- Stan lexer: update for version 1.3.0 of the language (PR#162). + +- JavaScript lexer: add the "yield" keyword (PR#196). + +- HTTP lexer: support for PATCH method (PR#190). + Version 1.6 ----------- diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index e9e173a8..896a3deb 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -1929,6 +1929,8 @@ class DgLexer(RegexLexer): class Perl6Lexer(ExtendedRegexLexer): """ For `Perl 6 <http://www.perl6.org>`_ source code. + + *New in Pygments 1.7.* """ name = 'Perl6' diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index c887b708..c3b0909d 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -235,6 +235,8 @@ class CppLexer(CFamilyLexer): class SwigLexer(CppLexer): """ For `SWIG <http://www.swig.org/>`_ source code. + + *New in Pygments 1.7.* """ name = 'SWIG' aliases = ['Swig', 'swig'] @@ -326,6 +328,8 @@ class NesCLexer(CLexer): """ For `nesC <https://github.com/tinyos/nesc>`_ source code with preprocessor directives. + + *New in Pygments 1.7.* """ name = 'nesC' aliases = ['nesc'] @@ -2717,6 +2721,8 @@ class BlitzMaxLexer(RegexLexer): class BlitzBasicLexer(RegexLexer): """ For `BlitzBasic <http://blitzbasic.com>`_ source code. + + *New in Pygments 1.7.* """ name = 'BlitzBasic' |