summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-05 22:50:54 +0100
committerGeorg Brandl <georg@python.org>2010-03-05 22:50:54 +0100
commitddd7dd74a7e4d22975b6064ac6861bce837770f0 (patch)
treef763360306d34a8901fdab19eda5d998c788693d
parenteeed4cc3b7406bbd7811be00a0c18e95babf5aa4 (diff)
downloadpygments-git-ddd7dd74a7e4d22975b6064ac6861bce837770f0.tar.gz
Update for 1.3.1 bugfix release.1.3.1
-rw-r--r--CHANGES7
-rw-r--r--MANIFEST.in1
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index a6b8d181..991ad671 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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)
diff --git a/MANIFEST.in b/MANIFEST.in
index 8fa0dfe8..312c1504 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,4 @@
+include pygmentize
include external/*
include Makefile CHANGES LICENSE AUTHORS TODO ez_setup.py
recursive-include tests *
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 823862e3..97623089 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -26,7 +26,7 @@
:license: BSD, see LICENSE for details.
"""
-__version__ = '1.3'
+__version__ = '1.3.1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index eda31b57..da9819c3 100755
--- a/setup.py
+++ b/setup.py
@@ -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',