diff --git a/HISTORY.rst b/HISTORY.rst index 7a681716..cd912885 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ Release History =============== -1.2.0 (2015-03-??) +1.2.0 (2015-03-20) ------------------ * Added full support of `mbed `__ diff --git a/platformio/__init__.py b/platformio/__init__.py index 960b6672..f40ab4c5 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (1, 2, "0.dev2") +VERSION = (1, 2, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/telemetry.py b/platformio/telemetry.py index 6bd014dc..55b26f21 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -89,6 +89,7 @@ class MeasurementProtocol(TelemetryBase): self['cd1'] = get_systype() self['cd2'] = "Python/%s %s" % (platform.python_version(), platform.platform()) + self['cd4'] = 1 if app.get_setting("enable_prompts") else 0 def _prefill_screen_name(self): args = [str(s).lower() for s in sys_argv[1:]]