summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2008-11-15 18:42:36 +0100
committergbrandl <devnull@localhost>2008-11-15 18:42:36 +0100
commita9e478d2cf40ed16b0bb22f24b49f88387c2a7e7 (patch)
tree17d8b8ac929d66c378564fb9ba99282ae7dd0230
parent001257693a1afc26a4a5fa16cdf69ca228600d93 (diff)
downloadpygments-a9e478d2cf40ed16b0bb22f24b49f88387c2a7e7.tar.gz
0.12 -> 1.0 references.
-rw-r--r--pygments/formatters/img.py6
-rw-r--r--pygments/lexers/agile.py4
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'