diff options
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | docs/src/installation.txt | 4 | ||||
-rw-r--r-- | pygments/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 5 insertions, 7 deletions
@@ -5,7 +5,7 @@ Issue numbers refer to the tracker at http://dev.pocoo.org/projects/pygments/. Version 1.2 ----------- -(codename not selected) +(codename Neujahr, released Jan 01, 2010) - Dropped Python 2.3 compatibility. @@ -42,8 +42,6 @@ Version 1.2 - A few ASM lexer fixes (#450). -- Added new float ops to LLVM. - Version 1.1.1 ------------- diff --git a/docs/src/installation.txt b/docs/src/installation.txt index c611fc55..22539165 100644 --- a/docs/src/installation.txt +++ b/docs/src/installation.txt @@ -4,8 +4,8 @@ Installation ============ -Pygments requires at least Python 2.3 to work correctly. Just to clarify: -there *won't* ever be support for Python versions below 2.3. However, there +Pygments requires at least Python 2.4 to work correctly. Just to clarify: +there *won't* ever be support for Python versions below 2.4. However, there are no other dependencies. diff --git a/pygments/__init__.py b/pygments/__init__.py index 38058037..9a0a273f 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -25,7 +25,7 @@ :license: BSD, see LICENSE for details. """ -__version__ = '1.1.1' +__version__ = '1.2' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] @@ -46,7 +46,7 @@ except ImportError: setup( name = 'Pygments', - version = '1.1.1', + version = '1.2', url = 'http://pygments.org/', license = 'BSD License', author = 'Georg Brandl', |