diff options
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | pygments/__init__.py | 5 | ||||
-rw-r--r-- | setup.cfg | 6 |
3 files changed, 13 insertions, 3 deletions
@@ -1,6 +1,11 @@ Pygments changelog ================== +Version 0.7 +----------- +(codename to be selected, released Feb XX, 2007) + + Version 0.6 ----------- (codename Zimtstern, released Dec 20, 2006) 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) @@ -1,3 +1,7 @@ [egg_info] tag_build = dev -tag_svn_revision = true
\ No newline at end of file +tag_svn_revision = true + +[aliases] +release = egg_info -RDb '' + |