Disable temporary SSL for PlatformIO services // Resolve #772

This commit is contained in:
Ivan Kravets
2016-09-08 01:57:50 +03:00
parent 9012ed256c
commit ff312f0405
4 changed files with 10 additions and 5 deletions

View File

@ -4,6 +4,12 @@ Release Notes
PlatformIO 3.0
--------------
3.0.1 (2016-09-??)
~~~~~~~~~~~~~~~~~~
* Disabled temporary SSL for PlatformIO services
(`issue #772 <https://github.com/platformio/platformio/issues/772>`_)
3.0.0 (2016-09-07)
~~~~~~~~~~~~~~~~~~

View File

@ -14,7 +14,7 @@
import sys
VERSION = (3, 0, 0)
VERSION = (3, 0, "1a1")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -51,9 +51,8 @@ DEFAULT_SETTINGS = {
"value": False
},
"disable_ssl": {
"description": ("Disable SSL for PlatformIO API "
"(NOT RECOMMENDED, INSECURE)"),
"value": False
"description": "Disable SSL for PlatformIO services",
"value": True
},
"enable_telemetry": {
"description":