From cc1ca3a43a18ad961760e7dbfc3535eddec6da79 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 1 Nov 2011 21:40:52 +0100 Subject: [PATCH] Closes #809: Include custom fixers in the source distribution. --- CHANGES | 6 ++++++ MANIFEST.in | 1 + sphinx/__init__.py | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 2c10a97a5..298ce9582 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +Release 1.1.2 (Nov 1, 2011) -- 1.1.1 is a silly version number anyway! +====================================================================== + +* #809: Include custom fixers in the source distribution. + + Release 1.1.1 (Nov 1, 2011) =========================== diff --git a/MANIFEST.in b/MANIFEST.in index 214b81608..cf308103c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -19,6 +19,7 @@ recursive-include sphinx/locale * recursive-include sphinx/ext/autosummary/templates * recursive-include tests * recursive-include utils * +recursive-include custom_fixers * include sphinx/pycode/Grammar.txt recursive-include doc * diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8a492228b..0a2532271 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,8 +15,8 @@ import sys from os import path -__version__ = '1.1.1' -__released__ = '1.1.1' # used when Sphinx builds its own docs +__version__ = '1.1.2' +__released__ = '1.1.2' # used when Sphinx builds its own docs package_dir = path.abspath(path.dirname(__file__))