Skip to content

Commit

Permalink
Disable temporary SSL for PlatformIO services // Resolve #772
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 7, 2016
1 parent 9012ed2 commit ff312f0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 0 files
2 changes: 1 addition & 1 deletion platformio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import sys

VERSION = (3, 0, 0)
VERSION = (3, 0, "1a1")
__version__ = ".".join([str(s) for s in VERSION])

__title__ = "platformio"
Expand Down
5 changes: 2 additions & 3 deletions platformio/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@
"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":
Expand Down

0 comments on commit ff312f0

Please sign in to comment.