M CHANGES +7 -0
@@ 8,6 8,13 @@ Version 1.4
(in development)
+Version 1.3.1
+-------------
+(bugfix release, released Mar 05, 2010)
+
+- The ``pygmentize`` script was missing from the distribution.
+
+
Version 1.3
-----------
(codename Schneeglöckchen, released Mar 01, 2010)
M MANIFEST.in +1 -0
@@ 1,3 1,4 @@
+include pygmentize
include external/*
include Makefile CHANGES LICENSE AUTHORS TODO ez_setup.py
recursive-include tests *
M pygments/__init__.py +1 -1
@@ 26,7 26,7 @@
:license: BSD, see LICENSE for details.
"""
-__version__ = '1.3'
+__version__ = '1.3.1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
M setup.py +1 -1
@@ 60,7 60,7 @@ else:
setup(
name = 'Pygments',
- version = '1.3',
+ version = '1.3.1',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',