diff --git a/MANIFEST.in b/MANIFEST.in index e0d52ca2b9bd22300cc5936b61d663579aea06eb..8109b97c81fbfe4af2b6b1e932663083c3b97dd2 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 36851c1c62f6e5ec17ec58ef10cd1c1a8ef2d7f1..4b423aa91903943a8184e959ea5ad13d3daceee0 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 d7bcd65a2d22b76c732825d5de28a03ef3a66a22..90623933ddde2d1fca2ed8c3047ed03754b9ada6 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 4db41a456458d2e75f45340335bccca23b751fb7..7169f848ae3a32fd4e2ca0bf9113b06ed4a62744 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 6a8db6853f7cc373dfe87fb02935386171861adb..bd08d7876e4def3a41ce33b43e1f1c194cbbb219 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