summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-20 23:11:45 +0100
committergbrandl <devnull@localhost>2006-12-20 23:11:45 +0100
commitf9b914f5dd9571f61cbcabec25f9c83030029f1b (patch)
tree9a9301bae2736f4de8be0ca5b995faea88ee926d /pygments
parentba526ee9cb45e16a05be86ae2e1d2975746c3523 (diff)
downloadpygments-f9b914f5dd9571f61cbcabec25f9c83030029f1b.tar.gz
[svn] Next version is 0.7.
Diffstat (limited to 'pygments')
-rw-r--r--pygments/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 0c03ef89..027eafd3 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -12,7 +12,7 @@
* a wide range of common languages and markup formats is supported
* special attention is paid to details, increasing quality by a fair amount
* support for new languages and formats are added easily
- * a number of output formats, presently HTML, LaTeX and ANSI sequences
+ * a number of output formats, presently HTML, LaTeX, RTF and ANSI sequences
* it is usable as a command-line tool and as a library
* ... and it highlights even Brainfuck!
@@ -23,7 +23,7 @@
:license: BSD, see LICENSE for more details.
"""
-__version__ = '0.6'
+__version__ = '0.7'
__docformat__ = 'restructuredtext'
__license__ = 'BSD License'
__author__ = 'Georg Brandl <g.brandl@gmx.net>'
@@ -76,6 +76,7 @@ def highlight(code, lexer, formatter, outfile=None):
def cmdline_main(args):
"""
Make pygments usable as a command line utility.
+ XXX: To be removed.
"""
from pygments.cmdline import main
return main(args)