From 85b6ff2c5cc176d0c161a0d8223d636176edcd70 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 28 Feb 2013 17:59:39 -0500 Subject: [PATCH] Docs: export command added to changes --- src/sphinx/Community/ChangeSummary_0.13.0.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sphinx/Community/ChangeSummary_0.13.0.rst b/src/sphinx/Community/ChangeSummary_0.13.0.rst index 427dda811..7416e47d1 100644 --- a/src/sphinx/Community/ChangeSummary_0.13.0.rst +++ b/src/sphinx/Community/ChangeSummary_0.13.0.rst @@ -24,6 +24,10 @@ Features - New syntax for settings, tasks, and input tasks. Details below. - Automatically link to external API scaladocs of dependencies by setting ``autoAPIMappings := true``. This requires at least Scala 2.10.1 and for dependencies to define ``apiURL`` for their scaladoc location. Mappings may be manually added to the ``apiMappings`` task as well. - Support setting Scala home directory temporary using the switch command: ``++ /path/to/scala/home``. +- ``export`` command + + * For tasks, prints the contents of the 'export' stream. By convention, this should be the equivalent command line(s) representation. ``compile``, ``doc``, and ``console`` show the approximate command lines for their execution. Classpath tasks print the classpath string suitable for passing as an option. + * For settings, directly prints the value of a setting instead of going through the logger Fixes -----