diff --git a/docs/userguide/cmd_ci.rst b/docs/userguide/cmd_ci.rst index 3c2842d4..1d381ecd 100644 --- a/docs/userguide/cmd_ci.rst +++ b/docs/userguide/cmd_ci.rst @@ -112,8 +112,6 @@ Buid project using pre-configured :ref:`projectconf`. Shows details about the results of processing environments. More details :option:`platformio run --verbose` -By default, verbosity level is set to 1 (only errors will be printed). - Examples -------- diff --git a/platformio/__init__.py b/platformio/__init__.py index b2569f3c..357f664d 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (2, 0, "0a1") +VERSION = (2, 0, "0a2") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/commands/ci.py b/platformio/commands/ci.py index 1ffdc97d..e4b48e07 100644 --- a/platformio/commands/ci.py +++ b/platformio/commands/ci.py @@ -53,7 +53,7 @@ def validate_boards(ctx, param, value): # pylint: disable=W0613 @click.option("--project-conf", type=click.Path(exists=True, file_okay=True, dir_okay=False, readable=True, resolve_path=True)) -@click.option("--verbose", "-v", count=True, default=1) +@click.option("--verbose", "-v", count=True, default=3) @click.pass_context def cli(ctx, src, lib, exclude, board, # pylint: disable=R0913 build_dir, keep_build_dir, project_conf, verbose):