summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-01 20:18:08 +0100
committerGeorg Brandl <georg@python.org>2010-01-01 20:18:08 +0100
commit920870ff3f4b802b02074a3419dc4b614d40b6c1 (patch)
tree2fa565cd786dbee0e14abc29f76145f1d5730aa7
parenta5edbbf85b3c4ada7b562a39cc19cea6ffafcd03 (diff)
downloadpygments-1.2.tar.gz
Update version info/changelog and update requirement info.1.2
-rw-r--r--CHANGES4
-rw-r--r--docs/src/installation.txt4
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 5 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index 54868ed3..9daf05af 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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']
diff --git a/setup.py b/setup.py
index cec30129..45537a49 100755
--- a/setup.py
+++ b/setup.py
@@ -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',