3a3846c2503d — Georg Brandl 1.3.1 14 years ago
Update for 1.3.1 bugfix release.
4 files changed, 10 insertions(+), 2 deletions(-)

M CHANGES
M MANIFEST.in
M pygments/__init__.py
M setup.py
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',