summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES6
-rw-r--r--TODO1
-rw-r--r--pygments/__init__.py2
-rw-r--r--pygments/formatters/img.py2
-rw-r--r--pygments/formatters/latex.py2
-rw-r--r--pygments/lexers/agile.py6
-rw-r--r--pygments/lexers/compiled.py2
-rw-r--r--pygments/lexers/math.py8
-rw-r--r--pygments/lexers/other.py6
-rw-r--r--pygments/lexers/web.py2
10 files changed, 18 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index f3276557..baa781f7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,9 @@
Pygments changelog
==================
-Version 1.0
------------
-(codename not selected, released XXX YY, 2008)
+Version 0.10
+------------
+(codename Malzeug, released May 06, 2008)
- Lexers added:
diff --git a/TODO b/TODO
index de29ec63..5873d873 100644
--- a/TODO
+++ b/TODO
@@ -7,7 +7,6 @@ suggested new lexers
* IPython sessions
* Nemerle
* PostgreSQL/SQLite
-* Tcl
for 1.0
-------
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 5482b0b6..a99c6408 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -24,7 +24,7 @@
:license: BSD, see LICENSE for more details.
"""
-__version__ = '1.0'
+__version__ = '0.10'
__author__ = 'Georg Brandl <g.brandl@gmx.net>'
__url__ = 'http://pygments.org/'
__license__ = 'BSD License'
diff --git a/pygments/formatters/img.py b/pygments/formatters/img.py
index eeb6449f..96665122 100644
--- a/pygments/formatters/img.py
+++ b/pygments/formatters/img.py
@@ -166,7 +166,7 @@ class ImageFormatter(Formatter):
Create an image from source code. This uses the Python Imaging Library to
generate a pixmap from the source code.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
Additional options accepted:
diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py
index f91b1e57..ae3ce26d 100644
--- a/pygments/formatters/latex.py
+++ b/pygments/formatters/latex.py
@@ -109,7 +109,7 @@ class LatexFormatter(Formatter):
The LaTeX commands used to produce colored output are constructed
using this prefix and some letters (default: ``'PY'``).
*New in Pygments 0.7.*
- *New in Pygments 1.0:* the default is now ``'PY'`` instead of ``'C'``.
+ *New in Pygments 0.10:* the default is now ``'PY'`` instead of ``'C'``.
"""
name = 'LaTeX'
aliases = ['latex', 'tex']
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py
index 0c64e74b..57d6a2ef 100644
--- a/pygments/lexers/agile.py
+++ b/pygments/lexers/agile.py
@@ -182,7 +182,7 @@ class Python3Lexer(RegexLexer):
"""
For `Python <http://www.python.org>`_ source code (version 3.0).
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Python 3'
@@ -1081,7 +1081,7 @@ class IoLexer(RegexLexer):
For `Io <http://iolanguage.com/>`_ (a small, prototype-based
programming language) source.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Io'
filenames = ['*.io']
@@ -1124,7 +1124,7 @@ class TclLexer(RegexLexer):
"""
For Tcl source code.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
keyword_cmds_re = (
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index ca5bb2c4..91730982 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -1064,7 +1064,7 @@ class FortranLexer(RegexLexer):
'''
Lexer for FORTRAN 90 code.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
'''
name = 'Fortran'
aliases = ['fortran']
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py
index fe4d9b89..cf628c04 100644
--- a/pygments/lexers/math.py
+++ b/pygments/lexers/math.py
@@ -102,7 +102,7 @@ class MatlabLexer(RegexLexer):
For Matlab (or GNU Octave) source code.
Contributed by Ken Schutte <kschutte@csail.mit.edu>.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Matlab'
aliases = ['matlab', 'octave']
@@ -198,7 +198,7 @@ class MatlabSessionLexer(Lexer):
For Matlab (or GNU Octave) sessions. Modeled after PythonConsoleLexer.
Contributed by Ken Schutte <kschutte@csail.mit.edu>.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Matlab session'
aliases = ['matlabsession']
@@ -246,7 +246,7 @@ class NumPyLexer(PythonLexer):
'''
A Python lexer recognizing Numerical Python builtins.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
'''
name = 'NumPy'
@@ -332,7 +332,7 @@ class SLexer(RegexLexer):
"""
For S, S-plus, and R source code.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'S'
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index f1f474e8..0701caa4 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -487,7 +487,7 @@ class SmalltalkLexer(RegexLexer):
For `Smalltalk <http://www.smalltalk.org/>`_ syntax.
Contributed by Stefan Matthias Aust.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Smalltalk'
filenames = ['*.st']
@@ -558,7 +558,7 @@ class TcshLexer(RegexLexer):
"""
Lexer for tcsh scripts.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Tcsh'
@@ -625,7 +625,7 @@ class LogtalkLexer(RegexLexer):
"""
For `Logtalk <http://logtalk.org/>`_ source code.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
"""
name = 'Logtalk'
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py
index b9777bf9..87ea32fe 100644
--- a/pygments/lexers/web.py
+++ b/pygments/lexers/web.py
@@ -539,7 +539,7 @@ class XsltLexer(XmlLexer):
'''
A lexer for XSLT.
- *New in Pygments 1.0.*
+ *New in Pygments 0.10.*
'''
name = 'XSLT'