---
* ``env.run()`` now takes a keyword argument ``quiet``. If quiet is
false, then if there is any error (return code != 0, or stderr
output) the complete output of the script will be printed.
* ScriptTest puts a marker file in scratch directories it deletes, so
that if you point it at a directory not created by ScriptTest it
will raise an error. Without this, unwitting developers could point
ScriptTest at the project directory, which would cause the entire
project directory to be wiped.
* ProcResults now no longer print the absolute path of the script
(which is often system dependent, and so not good for doctests).
* Added :func:`scripttest.ProcResults.wildcard_matches` which returns file
objects based on a wildcard expression.