bae0833cae75 — Georg Brandl 1.2 14 years ago
Update version info/changelog and update requirement info.
4 files changed, 5 insertions(+), 7 deletions(-)

M CHANGES
M docs/src/installation.txt
M pygments/__init__.py
M setup.py
M CHANGES +1 -3
@@ 5,7 5,7 @@ Issue numbers refer to the tracker at ht
 
 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
 -------------

          
M docs/src/installation.txt +2 -2
@@ 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.
 
 

          
M pygments/__init__.py +1 -1
@@ 25,7 25,7 @@ 
     :license: BSD, see LICENSE for details.
 """
 
-__version__ = '1.1.1'
+__version__ = '1.2'
 __docformat__ = 'restructuredtext'
 
 __all__ = ['lex', 'format', 'highlight']

          
M setup.py +1 -1
@@ 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',