diff options
author | Georg Brandl <georg@python.org> | 2011-01-03 18:05:23 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-01-03 18:05:23 +0100 |
commit | d5c467feac99ca707b883a2d1532e37a738f400d (patch) | |
tree | ab14f392e4fae4a9cb412e4870726060896dc56e | |
parent | 8c8b634ffa76c4a50149b05b76d9ea95aa016516 (diff) | |
download | pygments-d5c467feac99ca707b883a2d1532e37a738f400d.tar.gz |
Update version to 1.4, add release date.1.4
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | pygments/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ http://bitbucket.org/birkenfeld/pygments-main/issues. Version 1.4 ----------- -(codename not selected, in development) +(codename Unschärfe, released Jan 03, 2010) - Lexers added: @@ -47,7 +47,7 @@ Version 1.4 - Allow PIL to work without PIL.pth (#502). -- Allow seconds as a unit in css (#496). +- Allow seconds as a unit in CSS (#496). - Support ``application/javascript`` as a JavaScript mime type (#504). diff --git a/pygments/__init__.py b/pygments/__init__.py index 93ef690f..bc8ae83e 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -26,7 +26,7 @@ :license: BSD, see LICENSE for details. """ -__version__ = '1.3.1' +__version__ = '1.4' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] @@ -60,7 +60,7 @@ else: setup( name = 'Pygments', - version = '1.3.1', + version = '1.4', url = 'http://pygments.org/', license = 'BSD License', author = 'Georg Brandl', |