diff options
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/formatters/img.py | 6 | ||||
-rw-r--r-- | pygments/lexers/agile.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pygments/formatters/img.py b/pygments/formatters/img.py index 5bff5d93..ef3579d7 100644 --- a/pygments/formatters/img.py +++ b/pygments/formatters/img.py @@ -475,7 +475,7 @@ class GifImageFormatter(ImageFormatter): Create a GIF image from source code. This uses the Python Imaging Library to generate a pixmap from the source code. - *New in Pygments 0.12.* (You could create GIF images before by passing a + *New in Pygments 1.0.* (You could create GIF images before by passing a suitable `image_format` option to the `ImageFormatter`.) """ @@ -490,7 +490,7 @@ class JpgImageFormatter(ImageFormatter): Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code. - *New in Pygments 0.12.* (You could create JPEG images before by passing a + *New in Pygments 1.0.* (You could create JPEG images before by passing a suitable `image_format` option to the `ImageFormatter`.) """ @@ -505,7 +505,7 @@ class BmpImageFormatter(ImageFormatter): Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code. - *New in Pygments 0.12.* (You could create bitmap images before by passing a + *New in Pygments 1.0.* (You could create bitmap images before by passing a suitable `image_format` option to the `ImageFormatter`.) """ diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index 31a00747..f235d8cf 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -289,7 +289,7 @@ class PythonConsoleLexer(Lexer): `python3` Use Python 3 lexer for code. Default is ``False``. - *New in Pygments 0.12.* + *New in Pygments 1.0.* """ name = 'Python console session' aliases = ['pycon'] @@ -391,7 +391,7 @@ class Python3TracebackLexer(RegexLexer): """ For Python 3.0 tracebacks, with support for chained exceptions. - *New in Pygments 0.12.* + *New in Pygments 1.0.* """ name = 'Python 3.0 Traceback' |