Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-11-02 00:40:52 +0400
committerGeorg Brandl <georg@python.org>2011-11-02 00:40:52 +0400
commitcc1ca3a43a18ad961760e7dbfc3535eddec6da79 (patch)
tree1be9c34a4fa1e8547442b1fa2479915fdd2abb17
parentb4d802342e7f0a487d96481bfd3e2fe415bac68c (diff)
Closes #809: Include custom fixers in the source distribution.v1.1.21.1.2
-rw-r--r--CHANGES6
-rw-r--r--MANIFEST.in1
-rw-r--r--sphinx/__init__.py4
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__))