Update for 0.8.0

This commit is contained in:
Thomas S Hatch 2012-09-25 21:18:31 -06:00
parent 2402447381
commit a2608814c5
3 changed files with 25 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build2
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = _build

View File

@ -97,6 +97,29 @@ Options
Specify an alternative location for the salt cloud profiles file.
Default location is /etc/salt/cloud.profiles.
.. option:: --raw-out
Print the output from the salt command in raw python
form, this is suitable for re-reading the output into
an executing python script with eval.
.. option:: --text-out
Print the output from the salt command in the same form the shell would.
.. option:: --yaml-out
Print the output from the salt command in yaml.
.. option:: --json-out
Print the output from the salt command in json.
.. option:: --no-color
Disable all colored output.
Examples
========

View File

@ -1,2 +1,2 @@
__version_info__ = (0, 7, 0)
__version_info__ = (0, 8, 0)
__version__ = '.'.join(map(str, __version_info__))