Compare commits

..

4 Commits

Author SHA1 Message Date
Ivan Kravets
dd20c4273b Merge branch 'release/v3.0.1' 2016-09-08 02:00:06 +03:00
Ivan Kravets
cf5023436c Version bump to 3.0.1 (issue #772) 2016-09-08 01:59:54 +03:00
Ivan Kravets
ff312f0405 Disable temporary SSL for PlatformIO services // Resolve #772 2016-09-08 01:57:50 +03:00
Ivan Kravets
9012ed256c Merge branch 'release/v3.0.0' into develop 2016-09-07 20:50:47 +03:00
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-08)
~~~~~~~~~~~~~~~~~~
* 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, 1)
__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":