diff options
author | Georg Brandl <georg@python.org> | 2012-03-10 22:04:56 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-10 22:04:56 +0100 |
commit | 85fc9c058f9b4db6211b6c69f33814ac8531890e (patch) | |
tree | d8ff4f8a223ffb9e842ef5fb3b21278429f84247 | |
parent | 8c9e2afa0f48897cb494c9ea901dd3b05af3fe7b (diff) | |
download | pygments-85fc9c058f9b4db6211b6c69f33814ac8531890e.tar.gz |
Bump version to 1.5.
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | pygments/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -6,7 +6,7 @@ http://bitbucket.org/birkenfeld/pygments-main/issues. Version 1.5 ----------- -(codename not decided, released 2012) +(codename Zeitdilatation, released Mar 10, 2012) - Lexers added: @@ -351,7 +351,7 @@ Version 1.0 - Added Tango style, written by Andre Roberge for the Crunchy project. -- Added Python3TracebackLexer and ``python3`` option to +- Added Python3TracebackLexer and ``python3`` option to PythonConsoleLexer. - Fixed a few bugs in the Haskell lexer. @@ -689,7 +689,7 @@ Version 0.7 - Added token stream filters, and a pygmentize option to use them. -- Changed behavior of `in` Operator for tokens. +- Changed behavior of `in` Operator for tokens. - Added mimetypes for all lexers. diff --git a/pygments/__init__.py b/pygments/__init__.py index 8a0e337e..0ecc167d 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -26,7 +26,7 @@ :license: BSD, see LICENSE for details. """ -__version__ = '1.4' +__version__ = '1.5' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] @@ -60,7 +60,7 @@ else: setup( name = 'Pygments', - version = '1.4', + version = '1.5', url = 'http://pygments.org/', license = 'BSD License', author = 'Georg Brandl', |