mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Disable temporary SSL for PlatformIO services // Resolve #772
This commit is contained in:
@ -4,6 +4,12 @@ Release Notes
|
|||||||
PlatformIO 3.0
|
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)
|
3.0.0 (2016-09-07)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
2
examples
2
examples
Submodule examples updated: 72b3153af0...06275d78d1
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (3, 0, 0)
|
VERSION = (3, 0, "1a1")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -51,9 +51,8 @@ DEFAULT_SETTINGS = {
|
|||||||
"value": False
|
"value": False
|
||||||
},
|
},
|
||||||
"disable_ssl": {
|
"disable_ssl": {
|
||||||
"description": ("Disable SSL for PlatformIO API "
|
"description": "Disable SSL for PlatformIO services",
|
||||||
"(NOT RECOMMENDED, INSECURE)"),
|
"value": True
|
||||||
"value": False
|
|
||||||
},
|
},
|
||||||
"enable_telemetry": {
|
"enable_telemetry": {
|
||||||
"description":
|
"description":
|
||||||
|
Reference in New Issue
Block a user