forked from platformio/platformio-core
Disable temporary SSL for PlatformIO services // Resolve #772
This commit is contained in:
@ -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)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
2
examples
2
examples
Submodule examples updated: 72b3153af0...06275d78d1
@ -14,7 +14,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
VERSION = (3, 0, 0)
|
||||
VERSION = (3, 0, "1a1")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
|
@ -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":
|
||||
|
Reference in New Issue
Block a user