Skip to content
Snippets Groups Projects
Commit 609e8fd9 authored by Michael Foord's avatar Michael Foord
Browse files

Including templates in docs.

parent 1f717f15
No related branches found
No related tags found
No related merge requests found
include tests/*.py include tests/*.py
recursive-include html *.js *.txt *.html *.inv *.png *.css *.doctree recursive-include docs *.txt *.py *.png *.css *.html
include docs/*.txt
...@@ -9,8 +9,8 @@ mock is tested on Python versions 2.4-2.7 and Python 3. ...@@ -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 The mock module also provides utility functions / objects to assist with
testing, particularly monkey patching. testing, particularly monkey patching.
* `PDF documentation for 0.7.0 * `PDF documentation for 0.7.1
<http://www.voidspace.org.uk/downloads/mock-0.7.0.pdf>`_ <http://www.voidspace.org.uk/downloads/mock-0.7.1.pdf>`_
* `mock on google code (repository and issue tracker) * `mock on google code (repository and issue tracker)
<http://code.google.com/p/mock/>`_ <http://code.google.com/p/mock/>`_
* `mock documentation * `mock documentation
......
...@@ -44,6 +44,14 @@ itself is garbage collected. This is tricky to get right though. ...@@ -44,6 +44,14 @@ itself is garbage collected. This is tricky to get right though.
CHANGELOG 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 2011/03/05 Version 0.7.0
------------------------ ------------------------
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
:Date: 2011/03/05 :Date: 2011/03/05
:Homepage: `Mock Homepage`_ :Homepage: `Mock Homepage`_
:Download: `Mock on PyPI`_ :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`_ :License: `BSD License`_
:Support: `Mailing list (testing-in-python@lists.idyll.org) <http://lists.idyll.org/listinfo/testing-in-python>`_ :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>`_ :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 ...@@ -94,7 +94,7 @@ stabilise). If you find bugs or have suggestions for improvements / extensions
then please contact us. then please contact us.
* `mock on PyPI <http://pypi.python.org/pypi/mock>`_ * `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/>`_ * `Google Code Home & Mercurial Repository <http://code.google.com/p/mock/>`_
.. index:: repository .. index:: repository
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# Copyright (C) 2007-2011 Michael Foord & the mock team # Copyright (C) 2007-2011 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk # E-mail: fuzzyman AT voidspace DOT org DOT uk
# mock 0.7.0 # mock 0.7.1
# http://www.voidspace.org.uk/python/mock/ # http://www.voidspace.org.uk/python/mock/
# Released subject to the BSD License # Released subject to the BSD License
...@@ -23,7 +23,7 @@ __all__ = ( ...@@ -23,7 +23,7 @@ __all__ = (
'DEFAULT' 'DEFAULT'
) )
__version__ = '0.7.0' __version__ = '0.7.1'
__unittest = True __unittest = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment