From 5c7f0fdc60774814f9c1dcd679ce9318a6f3ed7d Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Mon, 4 Mar 2013 08:02:24 -0500 Subject: [PATCH] Docs: change summary: class file restoration after unsuccessful compilation --- src/sphinx/Community/ChangeSummary_0.13.0.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sphinx/Community/ChangeSummary_0.13.0.rst b/src/sphinx/Community/ChangeSummary_0.13.0.rst index 7416e47d1..69b11f4b6 100644 --- a/src/sphinx/Community/ChangeSummary_0.13.0.rst +++ b/src/sphinx/Community/ChangeSummary_0.13.0.rst @@ -36,11 +36,12 @@ Fixes Improvements ------------ -- Run the API extraction phase after the compiler's ``pickler`` phase instead of ``typer`` to allow compiler plugins after ``typer``. +- Run the API extraction phase after the compiler's ``pickler`` phase instead of ``typer`` to allow compiler plugins after ``typer``. (Adriaan M., gh-609) - Record defining source position of settings. ``inspect`` shows the definition location of all settings contributing to a defined value. - Allow the root project to be specified explicitly in ``Build.rootProject``. - Tasks that need a directory for storing cache information can now use the ``cacheDirectory`` method on ``streams``. This supersedes the ``cacheDirectory`` setting. - The environment variables used when forking ``run`` and ``test`` may be set via ``envVars``, which is a ``Task[Map[String,String]]``. (gh-665) +- Restore class files after an unsuccessful compilation. This is useful when an error occurs in a later incremental step that requires a fix in the originally changed files. Other -----