summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2011-05-06 14:43:32 +0100
committerMichael Foord <michael@voidspace.org.uk>2011-05-06 14:43:32 +0100
commit5041125da573227517eee179d3f1a5fca8b7931e (patch)
tree02b9785e20f70f291d651131cac7a500244c681a
parentd339a2140764025ef155b6b715b49bbd5bd02ae5 (diff)
downloadmock-5041125da573227517eee179d3f1a5fca8b7931e.tar.gz
Including templates in docs.
-rw-r--r--MANIFEST.in3
-rw-r--r--README.txt4
-rw-r--r--docs/changelog.txt8
-rw-r--r--docs/index.txt4
-rw-r--r--mock.py4
5 files changed, 15 insertions, 8 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index e0d52ca..8109b97 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,2 @@
include tests/*.py
-recursive-include html *.js *.txt *.html *.inv *.png *.css *.doctree
-include docs/*.txt
+recursive-include docs *.txt *.py *.png *.css *.html
diff --git a/README.txt b/README.txt
index 36851c1..4b423aa 100644
--- a/README.txt
+++ b/README.txt
@@ -9,8 +9,8 @@ mock is tested on Python versions 2.4-2.7 and Python 3.
The mock module also provides utility functions / objects to assist with
testing, particularly monkey patching.
-* `PDF documentation for 0.7.0
- <http://www.voidspace.org.uk/downloads/mock-0.7.0.pdf>`_
+* `PDF documentation for 0.7.1
+ <http://www.voidspace.org.uk/downloads/mock-0.7.1.pdf>`_
* `mock on google code (repository and issue tracker)
<http://code.google.com/p/mock/>`_
* `mock documentation
diff --git a/docs/changelog.txt b/docs/changelog.txt
index d7bcd65..9062393 100644
--- a/docs/changelog.txt
+++ b/docs/changelog.txt
@@ -44,6 +44,14 @@ itself is garbage collected. This is tricky to get right though.
CHANGELOG
=========
+2011/05/06 Version 0.7.1
+------------------------
+
+Package fixes contributed by Michael Fladischer.
+
+* Include template in package
+
+
2011/03/05 Version 0.7.0
------------------------
diff --git a/docs/index.txt b/docs/index.txt
index 4db41a4..7169f84 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -10,7 +10,7 @@
:Date: 2011/03/05
:Homepage: `Mock Homepage`_
:Download: `Mock on PyPI`_
-:Documentation: `PDF Documentation <http://www.voidspace.org.uk/downloads/mock-0.7.0.pdf>`_
+:Documentation: `PDF Documentation <http://www.voidspace.org.uk/downloads/mock-0.7.1.pdf>`_
:License: `BSD License`_
:Support: `Mailing list (testing-in-python@lists.idyll.org) <http://lists.idyll.org/listinfo/testing-in-python>`_
:Issue tracker: `Google code project <http://code.google.com/p/mock/issues/list>`_
@@ -94,7 +94,7 @@ stabilise). If you find bugs or have suggestions for improvements / extensions
then please contact us.
* `mock on PyPI <http://pypi.python.org/pypi/mock>`_
-* `mock documentation as PDF <http://www.voidspace.org.uk/downloads/mock-0.7.0.pdf>`_
+* `mock documentation as PDF <http://www.voidspace.org.uk/downloads/mock-0.7.1.pdf>`_
* `Google Code Home & Mercurial Repository <http://code.google.com/p/mock/>`_
.. index:: repository
diff --git a/mock.py b/mock.py
index 6a8db68..bd08d78 100644
--- a/mock.py
+++ b/mock.py
@@ -3,7 +3,7 @@
# Copyright (C) 2007-2011 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# mock 0.7.0
+# mock 0.7.1
# http://www.voidspace.org.uk/python/mock/
# Released subject to the BSD License
@@ -23,7 +23,7 @@ __all__ = (
'DEFAULT'
)
-__version__ = '0.7.0'
+__version__ = '0.7.1'
__unittest = True